[原创]System.Enum的一些用法

public enum Country
    {
        China = 1,
        USA = 2,
        Japan = 3,
        Europe = 4,
        Russia = 5
    }

Array arry_EnumValues = Enum.GetValues(typeof(Country));
string[] array_EnumNames = Enum.GetNames(typeof(Country));

 (Country)Enum.Parse(typeof(Country), "1");
 Enum.ToObject(typeof(Country), 1);
 Enum.IsDefined(typeof(Country), 0);
 Enum.Format(typeof(Country), 1, "D");

posted @ 2008-09-23 10:44  RobotTech  阅读(530)  评论(0编辑  收藏  举报