码迷,mamicode.com
首页 > Windows程序 > 详细

c# 根据枚举Value 获得名称

时间:2016-07-25 17:58:41      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:

// 定义枚举类型
enum sotype : int { book=1, pen=2, other=3 } // 输出名称 switch (Enum.GetName(typeof(sotype), 1)) { case "book": string strbook = "book"; //此时这个将被执行 break; default: break; }

 

c# 根据枚举Value 获得名称

标签:

原文地址:http://www.cnblogs.com/northeastTycoon/p/5704291.html

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