var code = "ebc3e00e-eec6-4a88-91a0-35f75c01a01f"
枚舉
public enum EnumOperType
{
[Description("新增")]
Add = 1,
[Description("修改")]
Edit,
[Description("刪除")]
Del
}
獲取某個(gè)描述
public string GetEnumDescription(Enum enumValue)
{
string value = enumValue.ToString();
FieldInfo field = enumValue.GetType().GetField(value);
object[] objs = field.GetCustomAttributes(typeof(DescriptionAttribute), false); //獲取描述屬性
if (objs == null || objs.Length == 0) //當(dāng)描述屬性沒(méi)有時(shí)滋饲,直接返回名稱(chēng)
return value;
DescriptionAttribute descriptionAttribute = (DescriptionAttribute)objs[0];
return descriptionAttribute.Description;
}
獲取所有描述
List<OpType> list = new List<OpType>();
foreach (var e in Enum.GetValues(typeof(EnumOperType)))
{
// 轉(zhuǎn)換成Description后添加至List
object objArr = e.GetType().GetField(e.ToString())
.GetCustomAttributes(typeof(DescriptionAttribute), true)[0];
var name = (objArr as DescriptionAttribute).Description;
OpType opType = new OpType();
opType.Key = (int)(EnumOperType)e;
opType.Text = name;
list.Add(opType);
}