/// <summary>/// 政治面貌/// </summary>public enum EumPoliticSstatus
{
[Display(Name = "党员")]
PartyMember = 1,
[Display(Name = "团员")]
Member = 2,
[Display(Name = "群众")]
Masses = 3,
[Display(Name = "民主党派")]
DemocraticParty = 4}先定义枚举
public static string GetEnumDesc(Enum en)
{
Type type = en.GetType();
MemberInfo[] memInfo = type.GetMember(en.ToString());if (memInfo != null && memInfo.Length > 0)
{object[] attrs = memInfo[0].GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.DisplayAttribute), false);if (attrs != null && attrs.Length > 0)return ((System.ComponentModel.DataAnnotations.DisplayAttribute)attrs[0]).Name;
}return en.ToString();
}上面这个方法根据传入的枚举值通过反射获得display中name的值
var name =GetEnumDesc(EumPoliticSstatus.PartyMember),
以上就是详解如何通过反射获得枚举的Display中name的值实例?的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号