码迷,mamicode.com
首页 > 其他好文 > 详细

枚举类型与值之间的转换

时间:2015-01-21 13:18:38      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

namespace ObjectType
{
    public enum TypeEnum
    {
        // 主城
        B_Castle = 10000,
        // 金矿
        B_Gold = 10001,
       //  伐木场
        B_Sawmill = 10002,

}}

using ObjectType;

//将值转换成对应的枚举

for (int i=10000; i<10002; i++) {
            TypeEnum mytype= (TypeEnum) Enum.Parse(typeof( TypeEnum),i.ToString());
            Debug.Log(mytype);
                }

//将枚举转换成对应的值

int test =(int) Enum.Parse (typeof(TypeEnum), TypeEnum.B_ArcherBarracks.ToString ());

技术分享

枚举类型与值之间的转换

标签:

原文地址:http://www.cnblogs.com/huilansehai/p/4238508.html

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