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));
}
}
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>