这个是枚举,从这我们可以看出枚举简化了我们创建类的步骤并减少了代码作者: 曾玉锋 时间: 2013-3-20 14:03
class Program
{
static void Main(string[] args)
{
Console.WriteLine(color.red);//输出"red"
//将字符串转换为枚举类型
color red = (color)Enum.Parse(typeof(color),"red");
Console.WriteLine(red);//输出
//将数字1转换为color类型的枚举变量
color yellow= (color)Enum.Parse(typeof(color),"1");
Console.WriteLine(yellow);//输出yellow
//将枚举类型转换为数字
int n = Convert.ToInt32(color.red);
Console.WriteLine(n);//输出0
Console.ReadKey();
}
}
//定义一个color枚举
public enum color { red,yellow,blue}