【WPF小功能】遍历枚举类型的

原文: 【WPF小功能】遍历枚举类型的


   
   
   
   
  1. foreach (ENUMType item in ENUMType.GetValues( typeof(ENUMType)))
  2. {
  3. Console.WriteLine(item.ToString());
  4. }

 

你可能感兴趣的:(【WPF小功能】遍历枚举类型的)