Я хочу додати ще одне рішення: У моєму випадку мені потрібно використовувати групу 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 для перерахунку. Це те, що я використовую.
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();
*/
}