C#程序获取指定枚举的类型
使用该GetType()方法获取枚举的类型。
枚举。
Enum[] values = { ConsoleColor.Blue, DayOfWeek.Sunday};现在要获取类型,请使用GetType()方法。
Type enumType = val.GetType();
以下是显示类型的示例。
示例
using System;
public class Demo {
public static void Main() {
Enum[] values = { ConsoleColor.Blue, DayOfWeek.Sunday};
Console.WriteLine("{0,-5} {1, 10} {2,10}\n", "Member", "Enumeration", "UnderlyingType");
foreach (var val in values)
Info(val);
}
static void Info(Enum val) {
Type enumType = val.GetType();
Type underlyingType = Enum.GetUnderlyingType(enumType);
Console.WriteLine("{0, -5} {1, 10} {2,10}", val, enumType.Name, underlyingType.Name);
}
}输出结果
Member Enumeration UnderlyingType Blue ConsoleColor Int32 Sunday DayOfWeek Int32
热门推荐
10 读书祝福语女生短句简短
11 感谢同事新婚祝福语简短
12 感谢教官文案祝福语简短
13 员工聚会蛋糕祝福语简短
14 元宵发客户祝福语简短
15 给团队信心祝福语简短
16 医美的祝福语大全简短
17 异国姻缘的祝福语简短
18 兄妹拍照祝福语简短的话