重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章将为大家详细讲解有关Enum扩展特性的示例分析,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
创新互联专注于赞皇企业网站建设,自适应网站建设,商城网站定制开发。赞皇网站建设公司,为赞皇等地区提供建站服务。全流程按需求定制开发,专业设计,全程项目跟踪,创新互联专业和态度为您提供的服务
使用特性代替了直接使用中文作为属性。特意摘抄部分为以后使用方便
////// 枚举帮助类/// public static class EnumTools {////// 获取当前枚举值的描述和排序/// /// ///返回元组Tuple(string,int) public static TupleGetDescription(this Enum value) {int order = 0;string description = string.Empty; Type type = value.GetType();// 获取枚举FieldInfo fieldInfo = type.GetField(value.ToString());// 获取枚举自定义的特性DescriptionAttributeobject[] attrs = fieldInfo.GetCustomAttributes(typeof(DescriptionAttribute), false); DescriptionAttribute attr = (DescriptionAttribute)attrs.FirstOrDefault(a => a is DescriptionAttribute); description = fieldInfo.Name;if (attr != null) { order = attr.Order; description = attr.Name; }return new Tuple (description,order); }/// /// 获取当前枚举的所有描述/// ///public static List > GetAll () {return GetAll(typeof(T)); }/// /// 获取所有的枚举描述和值/// /// ///public static List > GetAll(Type type) { List list = new List ();// 循环枚举获取所有的Fieldsforeach (var field in type.GetFields()) {// 如果是枚举类型if (field.FieldType.IsEnum) {object tmp = field.GetValue(null); Enum enumValue = (Enum)tmp;int intValue = Convert.ToInt32(enumValue);var dec = enumValue.GetDescription();int order= dec.Item2;string showName = dec.Item1; // 获取描述和排序list.Add(new EnumToolsModel { Key = intValue, Name = showName, Order = order }); } }// 排序并转成KeyValue返回return list.OrderBy(i => i.Order).Select(i => new KeyValuePair (i.Key, i.Name)).ToList(); }/// /// 枚举Model/// partial class EnumToolsModel {public int Order { get; set; }public string Name { get; set; }public int Key { get; set; } } }////// 枚举特性/// [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = false)]public class DescriptionAttribute : Attribute {////// 排序/// public int Order { get; set; }////// 名称/// public string Name { get; set; }////// 定义描述名称/// /// 名称public DescriptionAttribute(string name) { Name = name; }////// 定义描述名称和排序/// /// 名称/// 排序public DescriptionAttribute(string name, int order) { Name = name; Order = order; } }
把原文中的out参数替换成返回元组,由于项目是vs2015开发,不能用c#7.0特性,否则用7.0中的值元组应该更好一点。性能和显示友好性都会有改进。
关于“Enum扩展特性的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。