码迷,mamicode.com
首页 > Windows程序 > 详细

C#遍历获取枚举的值,名和属性

时间:2014-10-24 10:48:27      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   io   os   ar   for   sp   

获取:

    Type type = typeof(ParamServiceType);
    var values = Enum.GetValues(type);
    for (int i = 0; i < values.Length; i++)
    {
          var v = values.GetValue(i);
          var member = type.GetMember(v.ToString());
          DescriptionAttribute des = (DescriptionAttribute)System.Attribute.GetCustomAttribute(member[0], typeof(DescriptionAttribute));
//以下代码是业务需求 serviceRoot.children.Add(
new ServiceTree() { id = (int)v,//取int值 text = des.Description,//取属性值 state = "open", attributes = v.ToString(),//取名 children = null }); }

 

C#遍历获取枚举的值,名和属性

标签:des   style   blog   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/xachary/p/4047605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!