-
C#入门经典教程中关于SystemEnum的方法介绍
资源介绍
System.Enum的方法
using System;
namespace App1
{
class myApp
{
enum Fabric
{
Cotton = 1,
Silk = 2
}
static void Main()
{
string fabStr = "Cotton";
if (Enum.IsDefined(typeof(Fabric), fabStr))
{
Fabric fab = (Fabric)Enum.Parse(typeof(Fabric), fabStr);
Console.WriteLine(Enum.GetName(typeof(Fabric), 2));
}
}
}
}