C#枚举
标签:ref mem typeof des 特性 each iss 返回 ring
C#获取枚举描述
首先创建如下枚举信息,并使用DescriptionAttribute类增加描述特性。
///
/// 状态编码枚举
///
public enum StatusCode
{
///
/// 操作成功
///
[Description("操作成功")]
Success = 200,
///
/// 参数缺失
///
[Description("参数缺失")]
MissingParam = 201,
///
/// 操作失败
///
[Description("操作失败")]
Failure = 202
}
方法一:编写获取枚举描述方法
///
/// 获取枚举描述
///
/// 枚举
/// 返回枚举的描述
public static string GetDescription(Enum en)
{
Type type = en.GetType(); //获取类型
MemberInfo[] memberInfos = type.GetMember(en.ToString()); //获取成员
if (memberInfos != null && memberInfos.Length > 0)
{
DescriptionAttribute[] attrs = memberInfos[0].GetCustomAttributes(typeof(DescriptionAttribute), false) as DescriptionAttribute[]; //获取描述特性
if (attrs != null && attrs.Length > 0)
{
return attrs[0].Description; //返回当前描述
}
}
return en.ToString();
}
调用方式:
string description = GetDescription(StatusCode.Success);
方法二:通过枚举扩展类
using System;
using System.ComponentModel;
using System.Reflection;
///
/// 枚举扩展类
///
public static class EnumExtension
{
? ? ///
? ? /// 获取枚举的描述信息
? ? ///
? ? public static string GetDescription(this Enum em)
? ? {
? ? ? ? Type type = em.GetType();
? ? ? ? FieldInfo fd = type.GetField(em.ToString());
? ? ? ? if (fd == null)
? ? ? ? ? ? return string.Empty;
? ? ? ? object[] attrs = fd.GetCustomAttributes(typeof(DescriptionAttribute), false);
? ? ? ? string name = string.Empty;
? ? ? ? foreach (DescriptionAttribute attr in attrs)
? ? ? ? {
? ? ? ? ? ? name = attr.Description;
? ? ? ? }
? ? ? ? return name;
? ? }
}
调用方式:
string description = StatusCode.Success.GetDescription();
C#枚举
标签:ref mem typeof des 特性 each iss 返回 ring
原文地址:https://www.cnblogs.com/newcapecjmc/p/12737901.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
C#枚举
文章链接:http://soscw.com/index.php/essay/62306.html
评论