public partial class WebForm : System.Web.UI.Page
{
public enum eErrorDetailCode : int\\建立一个int枚举
{
登陆成功 = 0,
登出 = 1,
应用错误 = 2,
成功 = 16,
失败 = 17
}
protected void Page_Load(object sender, EventArgs e)
{
Dictionary<string, string> dtErrors = new Dictionary<string, string>();\\定义一个字典存枚举
string strKey = string.Empty;\\这个变量就是为了对应枚举中被赋值的量,比如成功、失败啥的
string strValue = string.Empty;\\这个是存储枚举中的那些数字
foreach (int intError in Enum.GetValues(typeof(eErrorDetailCode)))\\遍历枚举
{
strKey = intError.ToString();\\读取枚举中的值,就是成功、失败那些
strValue = Enum.GetName(typeof(eErrorDetailCode), intError);\\读取成功、失败所对应的值
dtErrors.Add(strKey, strValue);\\将他们存入之前定义的字典
}
foreach (KeyValuePair<string, string> oneKeyValue in dtErrors)\\输出字典的值
{
Response.Write("键:" + oneKeyValue.Key + ";值:" + oneKeyValue.Value + "<br>");
}
}
} |