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

C# 遍历枚举类

时间:2014-10-29 10:44:25      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   sp   div   on   log   

framework 4.0 环境下

方法

定义枚举类

判断枚举类中是否存在,若存在则输出

例子:

Defined.QrCode.QrCodeType type;//枚举类

if (!Enum.TryParse<Defined.QrCode.QrCodeType>( aa,out type))
{
     context.Response.Write("枚举类不存在");
     return null;
}

  framework 4.0 以下版本

定义哈希表或者list集合,然后验证集合中是否存在要验证的数值

List<string> lst=new List<string>();

foreach (testenum item in Enum.GetValues(typeof(testenum)))
{
     lst.add(item);
}

if(lst.contains("aa"))
{
    Messagebox.Show("包含aa")
}

C# 遍历枚举类

标签:style   blog   color   ar   for   sp   div   on   log   

原文地址:http://www.cnblogs.com/running-mydream/p/4058722.html

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