遍歷枚舉,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;
}