C#枚举GetValues方法

获取指定枚举中常量值的数组。

这是我们的枚举。

enum Rank { Jack = 10, Tom = 19, Tim = 26 };

现在,将枚举的所有值作为数组获取并使用GetValues()method显示。

foreach(int res in Enum.GetValues(typeof(Rank))) {
   Console.WriteLine(res);
}

让我们看看整个例子。

示例

using System;
public class Demo {
   enum Rank { Jack = 10, Tom = 19, Tim = 26 };
   public static void Main() {
      Console.WriteLine("这是MCA学生学院ABC的大学排名:");
      foreach(int res in Enum.GetValues(typeof(Rank))) {
         Console.WriteLine(res);
      }
   }
}

输出结果

这是MCA学生学院ABC的大学排名:
10
19
26