C# 获取枚举的特性描述

2021/9/3 17:07:33

本文主要是介绍C# 获取枚举的特性描述,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

枚举

	public enum EnumOperType
	{
		[Description("新增")]
		Add = 1,
		[Description("修改")]
		Edit,
		[Description("删除")]
		Del
	}

获取某个描述

        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)  //当描述属性没有时,直接返回名称
                return value;
            DescriptionAttribute descriptionAttribute = (DescriptionAttribute)objs[0];
            return descriptionAttribute.Description;
        }

获取所有描述

            List<OpType> list = new List<OpType>();
            foreach (var e in Enum.GetValues(typeof(EnumOperType)))
            {
                // 转换成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);
            }


这篇关于C# 获取枚举的特性描述的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程