C# 循环遍历枚举

class Program
    {
        static void Main(string[] args)
        {

            foreach (var aType in Enum.GetValues(typeof(ESection)))
            {
                Console.WriteLine((int)aType);
            }

            Console.ReadLine();

        }
    }

    /// 
    /// 电信运营商类型
    /// 
    public enum ESection
    {
        /// 
        /// 未知类型
        /// 
        Unknown = 1,
        /// 
        /// 中国联通
        /// 
        ChinaUnicom = 2,
        /// 
        /// 中国电信
        /// 
        ChinaTelecom=3,
        /// 
        /// 中国移动
        /// 
        ChinaMobile=4
    }```


![在这里插入图片描述](https://img-blog.csdnimg.cn/20201107091036157.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzIyMDAyODU1,size_16,color_FFFFFF,t_70#pic_center)

你可能感兴趣的:(ASP.NET,C#)