码迷,mamicode.com
首页 > Windows程序 > 详细

C# 遍历枚举(枚举是目的,遍历(获取)是手段)

时间:2018-01-08 16:50:01      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:string   logs   type   ring   get   img   body   tool   title   

 

C#中,如何获取(遍历)枚举中所有的值:

 

技术分享图片
  public enum Suits
    {
        Spades,
        Hearts,
        Clubs,
        Diamonds,
        NumSuits
    }

 private static void Main(string[] args)
        {
            foreach (Suits suit in Enum.GetValues(typeof(Suits)))
            {
                Console.WriteLine((int)suit+ ":" + suit);
            }
        }
技术分享图片
 
转载:https://www.cnblogs.com/zhangzhi19861216/p/5362090.html

C# 遍历枚举(枚举是目的,遍历(获取)是手段)

标签:string   logs   type   ring   get   img   body   tool   title   

原文地址:https://www.cnblogs.com/chengqi521/p/8243016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!