Quero adicionar outra solução: no meu caso, preciso usar um grupo Enum em uma lista de itens de botão suspenso. Portanto, eles podem ter espaço, ou seja, são necessárias descrições mais amigáveis ao usuário:
public enum CancelReasonsEnum
{
[Description("In rush")]
InRush,
[Description("Need more coffee")]
NeedMoreCoffee,
[Description("Call me back in 5 minutes!")]
In5Minutes
}
Em uma classe auxiliar (HelperMethods), criei o seguinte método:
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();
}
Ao ligar para este ajudante, você obterá a lista de descrições dos itens.
List<string> items = HelperMethods.GetListOfDescription<CancelReasonEnum>();
ADIÇÃO: Em qualquer caso, se você deseja implementar este método, você precisa: Extensão GetDescription para enum. É isso que eu uso.
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();
*/
}