C# 枚举 GetValues 方法


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

这是我们的枚举。

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

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

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("Here are the university rank of MCA Students College ABC:");
      foreach(int res in Enum.GetValues(typeof(Rank))) {
         Console.WriteLine(res);
      }
   }
}

输出

Here are the university rank of MCA Students College ABC:
10
19
26

更新于: 2020-06-23

2 千次浏览

开启你的职业生涯

通过完成课程以获取证书

入门
广告