Quiero agregar otra solución: en mi caso, necesito usar un grupo Enum en una lista de elementos de botón desplegable. Por lo tanto, podrían tener espacio, es decir, se necesitan descripciones más fáciles de usar:
public enum CancelReasonsEnum
{
[Description("In rush")]
InRush,
[Description("Need more coffee")]
NeedMoreCoffee,
[Description("Call me back in 5 minutes!")]
In5Minutes
}
En una clase de ayuda (HelperMethods) creé el siguiente 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();
}
Cuando llame a este asistente, obtendrá la lista de descripciones de elementos.
List<string> items = HelperMethods.GetListOfDescription<CancelReasonEnum>();
ADICIÓN: En cualquier caso, si desea implementar este método, necesita: Extensión GetDescription para enum. Esto es lo que utilizo.
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();
*/
}