枚举扩展方法获取枚举Description

枚举扩展方法

 1  /// <summary>
 2         /// 扩展方法,获得枚举的Description
 3         /// </summary>
 4         /// <param name="value">枚举值</param>
 5         /// <param name="nameInstend">当枚举没有定义DescriptionAttribute,是否用枚举名代替,默认使用</param>
 6         /// <returns>枚举的Description</returns>
 7         public static string GetDescription(this Enum value, bool nameInstend = true)
 8         {
 9             Type type = value.GetType();
10             string name = Enum.GetName(type, value);
11             if (name==null)
12             {
13                 return null;
14             }
15             FieldInfo field = type.GetField(name);
16             DescriptionAttribute attribute = Attribute.GetCustomAttribute(field, typeof(DescriptionAttribute)) as DescriptionAttribute;
17             if (attribute==null&&nameInstend==true)
18             {
19                 return name;
20             }
21             return attribute==null? null :attribute.Description;
22         }

枚举类

 1  public enum WeekDay
 2     {
 3         [Description("星期一")]
 4         one=1,
 5         [Description("星期二")]
 6         two =2,
 7         three=3,
 8         four=4,
 9         five=5,
10         six=6,
11         seven=7
12
13     }

测试

           //枚举测试
            WeekDay w1 = WeekDay.one;
            string strw1 = w1.GetDescription();// strw1= “星期一”

            WeekDay w3 = WeekDay.three;
            string strw2 = w3.GetDescription();// strw3=“three”
时间: 2024-10-10 13:57:53

枚举扩展方法获取枚举Description的相关文章

C#枚举扩展方法,获取枚举值的描述值以及获取一个枚举类下面所有的元素

/// <summary> /// 枚举扩展方法 /// </summary> public static class EnumExtension { private static Dictionary<string, Dictionary<string, string>> _enumCache; /// <summary> /// 缓存 /// </summary> private static Dictionary<stri

枚举帮助方法,枚举数据注解自定义验证器

枚举辅助类 获取枚举项列表 获取枚举值列表 枚举项包含 枚举值包含 转换枚举 代码如下 1 /// <summary> 2 /// 枚举辅助类 3 /// </summary> 4 public class EnumHelper 5 { 6 7 private static readonly Dictionary<Type, object> EnumCache = new Dictionary<Type, object>(); 8 9 private sta

C# 扩展方法——获得枚举的Description

其他扩展方法详见:https://www.cnblogs.com/zhuanjiao/p/12060937.html /// <summary> /// 扩展方法,获得枚举的Description /// </summary> /// <param name="value">枚举值</param> /// <param name="nameInstead">当枚举值没有定义DescriptionAttrib

枚举定义,获取枚举的描述

定义枚举熟悉,描述 /// <summary> /// 枚举注释的自定义属性类 /// </summary> public class EnumDescriptionAttribute : Attribute { private string m_strDescription; public EnumDescriptionAttribute(string strPrinterName) { m_strDescription = strPrinterName; } public st

Linq扩展方法获取单个元素

在使用Linq 提供的扩展方法时,First(OrDefault), Single(OrDefault), Last(OrDefault)都具有返回单个元素的功能.MSDN对这些方法的描述只有功能说明,没有关于内部的相关实现的描述说明. 首先我们来看下MSDN上关于这些扩展方法的官方描述: First: 返回序列中的第一个元素 . FirstOrDefault: 返回序列中的第一个元素:如果未找到元素,则返回默认值. Last:返回序列的最后一个元素. LastOrDefault: 返回序列中的

如何在类中根据枚举值,获取枚举的message的工具类

枚举类为: public enum OrderStatusEnum implements CondeEnum{ NEW(0, "新订单"), FINISHED(1, "完结"), CANCLE(2, "取消"); private Integer code; private String msg; OrderStatusEnum(Integer code, String msg) { this.code = code; this.msg = msg

枚举获得Description扩展方法

定义枚举类型: internal enum SexEnum { [Description("男性")] Man=1, [Description("女性")] Woman =2, [Description("未知")] Unknown =3, TestNoDescription=4 } 枚举扩展方法: /// <summary> /// 枚举<see cref="Enum" />的扩展辅助操作方法 ///

JAVA枚举操作(获取值,转map集合)

JAVA枚举相对来说比.NET的枚举功能强大,感觉就像是一种简化版的类对象,可以有构造方法,可以重载,可以继承接口等等,但不能继承类,JAVA枚举在实际开发中应用相当频繁,以下几个封装方法在实际开发中可能用到,希望对新手有些帮助. 首先,新建一个枚举接口,为保证所有继承此接口的枚举value及description一致,便于开发使用,枚举统一接口如下. public interface EnumCommon { public int getValue(); public String getDe

C#记录日志、获取枚举值 等通用函数列表

using System;using System.Collections;using System.Collections.Generic;using System.ComponentModel;using System.Linq; namespace System.Web.Mvc{    #region 通用函数    /// <summary>    /// 通用函数    /// </summary>    public class Common    {        #