码迷,mamicode.com
首页 > Web开发 > 详细

.Net枚举的使用

时间:2017-10-09 19:45:08      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:numa   申请   new   value   convert   net   遍历   null   app   

public enum EnumAPPType
{
  申请 = 0
  变更 = 1,
}   

  // 设置值,和文本类型

   Array array = Enum.GetValues(typeof(DTEnums.EnumAPPType));

            if (array != null && array.Length > 0)
            {
                //  遍历枚举
                for (int i = 0; i < array.Length; i++)
                {
                    source.Add(new KeyValue<int, string> { Key = Convert.ToInt32(array.GetValue(i)), Value = System.Enum.GetName(typeof(DTEnums.EnumAPPType), Convert.ToInt32(array.GetValue(i))) });
                }

            }

.Net枚举的使用

标签:numa   申请   new   value   convert   net   遍历   null   app   

原文地址:http://www.cnblogs.com/ment/p/7642375.html

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