返回枚舉中的desciption

 /// <summary>
        /// 返回枚舉中的desciption
        /// </summary>
        /// <param name="value">枚舉</param>
        /// <returns></returns>
        public static string GetDescription(this Enum value)
        {
            return value.GetType()
                .GetMember(value.ToString())
                .FirstOrDefault()?
                .GetCustomAttribute<DescriptionAttribute>()?
                .Description;
        }
相關文章
相關標籤/搜索