C#枚举-通过值获取名字,通过名称获取值


public enum ProtoType
{
    Move = 1,
    Enter = 2,
    Leave = 3,
    Attack,
    Die,
}

        print("ProtoType.Move:" + ProtoType.Move);
        print("ProtoType.Move.ToString():" + ProtoType.Move.ToString());
        print("Enum.GetName(typeof(ProtoType),3):" + Enum.GetName(typeof(ProtoType), 3));
        print("(ProtoType)(1):" + (ProtoType)(1));
        print("(ProtoType)(3):" + (ProtoType)(3));
        print("(ProtoType)(8):" + (ProtoType)(8));
        var arry = Enum.GetValues(typeof(ProtoType));
        foreach (var item in arry) { print(item); }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM