摘要:
Enum 可以通过 GetValues 将枚举转为Array .View Code 1 using System; 2 3 enum EnumNames 4 { 5 liuxiaolin, 6 zhoutianchi, 7 zhouqihan 8 } 9 class EnumTest10 {11 static void Main()12 {13 int n = Enum.GetValues(typeof(EnumNames)).Length; //用Enum.GetValues(typeof(EnumNames)) 返回一个数组,le... 阅读全文