黑马程序员技术交流社区

标题: 枚举问题 [打印本页]

作者: 胡元江    时间: 2013-2-26 10:55
标题: 枚举问题
有不有办法遍历枚举中的成员 。如何实现。谢谢
作者: xiaoxiang_04    时间: 2013-2-26 11:20
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>");
            }
        }  
    }




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2