2007-11-29 17:01:12
Enum类为枚举提供基类。
下面介绍几个方法:
1.Enum.GetValues方法:返回枚举常量对应的整数值,默认第一个枚举常量的值为0,其他的依次递增。
eg.
enum Colors { Red, Green, Blue, Yellow };
enum Styles { Plaid = 0, Striped = 23, Tartan = 65, Corduroy = 78 };
foreach (int i in Enum.GetValues(typeof(Colors)))
Console.WriteLine(i);
foreach (int i in Enum.GetValues(typeof(Styles)))
Console.WriteLine(i);
分别输出0,1,2,3和0,23,65,78
2.Enum.GetNames方法:返回所有枚举常量的名字。
eg.
foreach(string s in Enum.GetNames(typeof(Colors)))
Console.WriteLine(s);
输出 Red Green Blue Yellow。
3.Enum.Parse方法:可以根据枚举常量的字符串名称返回对应的枚举类型的常量。
eg.
Enum.Parse(typeof(Colors),"Red")会返回一个Colors.Red的枚举值。