30 lines
992 B
C#
30 lines
992 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ewide.Core.Util
|
|
{
|
|
public static class EnumHelper
|
|
{
|
|
/// <summary>
|
|
/// 获取枚举注释
|
|
/// </summary>
|
|
/// <param name="enumValue"></param>
|
|
/// <returns></returns>
|
|
public static string GetEnumDescription(this 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;
|
|
}
|
|
}
|
|
}
|