遍历 枚举 enmu ; 枚举类型作为函数参数传递;

遍历枚举,enum支持中文

namespace wo_BLL
{
public class common
{

public enum error
{
错误1,
错误2


}
}
}

//此处使用

string ss = null;

foreach(string s in Enum.GetNames(typeof(wo_BLL.common.error)) )
{
if (string.IsNullOrEmpty(ss))
{
ss = s;
}
else
{
ss += ","+s;
}

}
MessageBox.Show("遍历枚举" + ss); return;

枚举作为函数参数传递

public static string IsEnumContained(string parentContext,Type a)
{

string result = "0|不存在";

if(!string.IsNullOrEmpty(parentContext))
{
foreach (string s in Enum.GetNames(a))
{
if(parentContext.IndexOf(s)!=-1)
{

result = "1|" + s + "";
break;
}

}
}


return result;
}

原文地址:https://www.cnblogs.com/StudyLife/p/2604309.html