在C#中获取当前枚举类型中常量的值的数组
要获取当前枚举类型中常量的值的数组,代码如下 -
示例
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("
Listing constants .."); for (int i = 0; i < str.Length; i++) Console.Write("{0} ", str[i]); } catch (ArgumentException e) { Console.WriteLine("Not an enum!"); Console.Write("{0}", e.GetType(), e.Message); } } }
输出
这会产生以下输出 -
Not an enum! System.ArgumentException
示例
让我们看另一个示例 -
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("
Listing constants .."); for (int i = 0; i < str.Length; i++) Console.Write("{0} ", str[i]); } catch (ArgumentException e) { Console.WriteLine("Not an enum!"); 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
广告