System.Enum的方法
提問人:劉冬梅發(fā)布時(shí)間:2020-10-10
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));
}
}
}
}
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>