C# 枚举 GetValues 方法
csharpprogrammingserver side programming
获取指定枚举中常量值的数组。
这是我们的枚举。
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("以下是 MCA Students College ABC 的大学排名:"); foreach(int res in Enum.GetValues(typeof(Rank))) { Console.WriteLine(res); } } }
输出
以下是 MCA Students College ABC 的大学排名: 10 19 26