C#获取枚举描述

2021-04-05 21:24

阅读:399

标签:style   .com   custom   ring   des   ace   using   图片   TE   

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Reflection;
using System.Text;

namespace JFJT.GemStockpiles.Helpers
{
    public static class EnumHelper
    {
        /// 
        /// 根据值得到中文备注
        /// 
        /// 
        /// 
        /// 
        public static String GetEnumDesc(this Type e, int? value)
        {
            FieldInfo[] fields = e.GetFields();
            for (int i = 1, count = fields.Length; i )
            {
                if ((int)System.Enum.Parse(e, fields[i].Name) == value)
                {
                    DescriptionAttribute[] EnumAttributes = (DescriptionAttribute[])fields[i].
                    GetCustomAttributes(typeof(DescriptionAttribute), false);
                    if (EnumAttributes.Length > 0)
                    {
                        return EnumAttributes[0].Description;
                    }
                }
            }
            return "";
        }
    }
}

调用

 

技术分享图片

技术分享图片

 

C#获取枚举描述

标签:style   .com   custom   ring   des   ace   using   图片   TE   

原文地址:https://www.cnblogs.com/Cein/p/9151821.html


评论


亲,登录后才可以留言!