この回答を拡張して、より完全なソリューションを提供し、セマンティック構文を改善しました。
using System;
using System.ComponentModel;
public static class EnumExtensions {
// This extension method is broken out so you can use a similar pattern with
// other MetaData elements in the future. This is your base method for each.
public static T GetAttribute<T>(this Enum value) where T : Attribute {
var type = value.GetType();
var memberInfo = type.GetMember(value.ToString());
var attributes = memberInfo[0].GetCustomAttributes(typeof(T), false);
return (T)attributes[0];
}
// This method creates a specific call to the above method, requesting the
// Description MetaData attribute.
public static string ToName(this Enum value) {
var attribute = value.GetAttribute<DescriptionAttribute>();
return attribute == null ? value.ToString() : attribute.Description;
}
}
このソリューションは、Enum で拡張メソッドのペアを作成し、探していることを実行できるようにします。のクラスのEnum
構文を使用するために、コードを少し拡張しました。DisplayAttribute
System.ComponentModel.DataAnnotations
using System.ComponentModel.DataAnnotations;
public enum Days {
[Display(Name = "Sunday")]
Sun,
[Display(Name = "Monday")]
Mon,
[Display(Name = "Tuesday")]
Tue,
[Display(Name = "Wednesday")]
Wed,
[Display(Name = "Thursday")]
Thu,
[Display(Name = "Friday")]
Fri,
[Display(Name = "Saturday")]
Sat
}
上記の拡張メソッドを使用するには、次のように呼び出すだけです。
Console.WriteLine(Days.Mon.ToName());
また
var day = Days.Mon;
Console.WriteLine(day.ToName());