遍历 枚举 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;
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM