public enum AssetTypeEnum
{
主机 = 1,
路由器 = 2,
交换机 = 3,
防火墙 = 4,
虚拟机 = 5
{
主机 = 1,
路由器 = 2,
交换机 = 3,
防火墙 = 4,
虚拟机 = 5
}
取枚举的名称:
Enum.GetName(typeof (AssetTypeEnum), 1);
取枚举的数值:
(int)(AssetTypeEnum) Enum.Parse(typeof (AssetTypeEnum), “主机 ”, true)