(精華)2020年6月26日 C#類庫 Enum(擴充套件方法)

愚公搬程式碼發表於2020-06-26
using System;
using System.ComponentModel;
using System.Linq;

namespace Core.Util
{
    /// <summary>
    /// 擴充類
    /// </summary>
    public static partial class Extention
    {
        /// <summary>
        /// 獲取列舉描述
        /// </summary>
        /// <param name="value">列舉值</param>
        /// <returns></returns>
        public static string GetDescription(this Enum value)
        {
            DescriptionAttribute attribute = value.GetType()
                .GetField(value.ToString())
                .GetCustomAttributes(typeof(DescriptionAttribute), false)
                .SingleOrDefault() as DescriptionAttribute;
            return attribute == null ? value.ToString() : attribute.Description;
        }
    }
}

相關文章