你可以遍历所有的枚举值?
这个问题在这里已经有了答案:
如何枚举枚举? 14个答案
public enum Foos
{
A,
B,
C
}
有没有办法循环Foos
的可能值?
基本上?
foreach(Foo in Foos)
是的,你可以使用GetValues
方法:
var values = Enum.GetValues(typeof(Foos));
或者键入的版本:
var values = Enum.GetValues(typeof(Foos)).Cast<Foos>();
我很久以前就向我的私人图书馆添加了一个辅助函数,
public static class EnumUtil {
public static IEnumerable<T> GetValues<T>() {
return Enum.GetValues(typeof(T)).Cast<T>();
}
}
用法:
var values = EnumUtil.GetValues<Foos>();
foreach(Foos foo in Enum.GetValues(typeof(Foos)))
foreach (EMyEnum val in Enum.GetValues(typeof(EMyEnum)))
{
Console.WriteLine(val);
}
感谢Jon Skeet:http://bytes.com/groups/net-c/266447-how-loop-each-items-enum
链接地址: http://www.djcxy.com/p/2663.html