Başka bir çözüm eklemek istiyorum: Benim durumumda, aşağı açılır düğme liste öğelerinde bir Enum grubu kullanmam gerekiyor. Dolayısıyla, boşlukları olabilir, yani daha kullanıcı dostu açıklamalara ihtiyaç vardır:
public enum CancelReasonsEnum
{
[Description("In rush")]
InRush,
[Description("Need more coffee")]
NeedMoreCoffee,
[Description("Call me back in 5 minutes!")]
In5Minutes
}
Bir yardımcı sınıfta (HelperMethods) aşağıdaki yöntemi oluşturdum:
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();
}
Bu yardımcıyı aradığınızda, ürün açıklamalarının listesini alacaksınız.
List<string> items = HelperMethods.GetListOfDescription<CancelReasonEnum>();
EK: Her durumda, bu yöntemi uygulamak istiyorsanız, ihtiyacınız olan: enum için GetDescription uzantısı. Kullandığım şey bu.
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();
*/
}