Я хочу добавить другое решение: в моем случае мне нужно использовать группу Enum в элементах списка раскрывающихся кнопок. Таким образом, в них может быть место, т.е. необходимы более удобные описания:
public enum CancelReasonsEnum
{
[Description("In rush")]
InRush,
[Description("Need more coffee")]
NeedMoreCoffee,
[Description("Call me back in 5 minutes!")]
In5Minutes
}
Во вспомогательном классе (HelperMethods) я создал следующий метод:
public static List<string> GetListOfDescription<T>() where T : struct
{
Type t = typeof(T);
return !t.IsEnum ? null : Enum.GetValues(t).Cast<Enum>().Select(x => x.GetDescription()).ToList();
}
При вызове этого помощника вы получите список описаний предметов.
List<string> items = HelperMethods.GetListOfDescription<CancelReasonEnum>();
ДОПОЛНЕНИЕ: В любом случае, если вы хотите реализовать этот метод, вам необходимо: Расширение GetDescription для enum. Это то, что я использую.
public static string GetDescription(this Enum value)
{
Type type = value.GetType();
string name = Enum.GetName(type, value);
if (name != null)
{
FieldInfo field = type.GetField(name);
if (field != null)
{
DescriptionAttribute attr =Attribute.GetCustomAttribute(field,typeof(DescriptionAttribute)) as DescriptionAttribute;
if (attr != null)
{
return attr.Description;
}
}
}
return null;
/* how to use
MyEnum x = MyEnum.NeedMoreCoffee;
string description = x.GetDescription();
*/
}