c# 枚举帮助类

ublic class EnumHelper
    {
        #region 返回枚举对应属性

        ///


        /// 返回枚举对应属性
        ///

        /// 枚举类
        ///
        public static List EnumToList()
        {
            List list = new List();

            var items = Enum.GetValues(typeof(T));
            foreach (var item in items)
            {
                Model.EnumType entity = new Model.EnumType();
                object[] obj = item.GetType().GetField(item.ToString()).GetCustomAttributes(typeof(DescriptionAttribute), true);
                if (obj != null && obj.Length > 0)
                {
                    DescriptionAttribute da = obj[0] as DescriptionAttribute;
                    entity.Desction = da.Description;
                }

                entity.Value = Convert.ToInt32(item);
                entity.Name = item.ToString();
                list.Add(entity);
            }
            return list;
        }
        #endregion

        #region  获取枚举类型描述

        ///


        /// 获取枚举类型描述
        ///

        /// 枚举值
        ///
        public static string GetEnumDescription(Enum enumValue)
        {
            string str = enumValue.ToString();
            System.Reflection.FieldInfo field = enumValue.GetType().GetField(str);
            object[] objs = field.GetCustomAttributes(typeof(System.ComponentModel.DescriptionAttribute), false);
            if (objs == null || objs.Length == 0) return str;
            System.ComponentModel.DescriptionAttribute da = (System.ComponentModel.DescriptionAttribute)objs[0];
            return da.Description;
        }
        #endregion

        #region 字符串转枚举

        ///


        /// 字符串转枚举
        ///

        /// 枚举类型
        /// 名称
        ///
        public static T StringToEnum(string value)
        {
            var obj = (T)Enum.Parse(typeof(T), value, false);
            return obj;
        }
        #endregion
    }

你可能感兴趣的:(c#,java,开发语言)