c#中Enum和String相互转换
枚举:
public enum MonitorType { ManualMonitor ,//人工监测 Tm30,//TM机器人监测 Ls ,//拉载监测 FiberBraggGrate,//光纤光栅 LightMonitor,//微光监测 Gps //GPS监测 }
String转Enum:
MonitorType monitorType = (MonitorType)Enum.Parse(typeof(MonitorType), "Ls");
Enum转String:
String str=MonitorType.Ls.toString();
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。