Home > Article > Backend Development > Detailed explanation of how to obtain the value instance of name in the enumerated Display through reflection?
/// <summary>/// 政治面貌/// </summary>public enum EumPoliticSstatus { [Display(Name = "党员")] PartyMember = 1, [Display(Name = "团员")] Member = 2, [Display(Name = "群众")] Masses = 3, [Display(Name = "民主党派")] DemocraticParty = 4}
First define the enumeration
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(); }
The above method obtains the value of the name in the display through reflection based on the incoming enumeration value
var name =GetEnumDesc(EumPoliticSstatus.PartyMember),
The above is the detailed content of Detailed explanation of how to obtain the value instance of name in the enumerated Display through reflection?. For more information, please follow other related articles on the PHP Chinese website!