C#中的Type.GetEnumValues()方法
C#中的Type.GetEnumValues()方法返回当前枚举类型中常量值的数组。
语法
以下是语法-
public virtual Array GetEnumValues ();
示例
现在让我们看一个实现Type.GetEnumValues()方法的示例-
using System;
public class Demo {
enum Vehicle {Car, Bus, Bike, Airplane}
public static void Main(){
try {
Type type = typeof(int);
string[] str = type.GetEnumNames();
Console.WriteLine("GetEnumNames() to return the constant name = " + str);
Type type2 = type.GetEnumUnderlyingType();
Console.Write("Enum Underlying type = "+type2);
Array arrObj = type.GetEnumValues();
Console.Write("Values = {0}"+arrObj);
Console.WriteLine("\nListing constants ..");
for (int i = 0; i < str.Length; i++)
Console.Write("{0} ", str[i]);
}
catch (ArgumentException e){
Console.WriteLine("不是枚举!");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}输出结果
这将产生以下输出-
不是枚举! System.ArgumentException
示例
现在让我们来看另一个实现Type.GetEnumValues()方法的示例-
using System;
public class Demo {
enum Vehicle {Car, Bus, Bike, Airplane}
public static void Main(){
try {
Vehicle v = Vehicle.Bike;
Type type = v.GetType();
string[] str = type.GetEnumNames();
Console.WriteLine("GetEnumName() to return the constant name = " + str);
Type type2 = type.GetEnumUnderlyingType();
Console.Write("Enum Underlying type = "+type2);
Array arrObj = type.GetEnumValues();
Console.Write("Values = "+arrObj);
Console.WriteLine("\nListing constants ..");
for (int i = 0; i < str.Length; i++)
Console.Write("{0} ", str[i]);
}
catch (ArgumentException e){
Console.WriteLine("不是枚举!");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}输出结果
这将产生以下输出-
GetEnumName() to return the constant name = System.String[] Enum Underlying type = System.Int32Values = Demo+Vehicle[] Listing constants .. Car Bus Bike Airplane
热门推荐
10 香港老妈结婚祝福语简短
11 毕业立体贺卡祝福语简短
12 简短新年年会祝福语
13 评论小品祝福语大全简短
14 恭喜师兄结婚祝福语简短
15 员工集体辞职祝福语简短
16 高中新生祝福语 简短
17 装修祝福语男生搞笑简短
18 生日开业蛋糕祝福语简短