码迷,mamicode.com
首页 > 编程语言 > 详细

c#中Enum和String相互转换

时间:2015-02-01 20:31:55      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

枚举:

 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();



c#中Enum和String相互转换

标签:

原文地址:http://blog.csdn.net/wj512416359/article/details/43373895

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!