这个问题在这里已经有了答案:如何在C#中枚举枚举?26个答案

public enum Foos
{
    A,
    B,
    C
}

有没有一种方法可以循环遍历Foos的可能值?

大体上

foreach(Foo in Foos)

当前回答

已更新过了一段时间,我看到一条评论,让我回到了以前的答案,我想我现在会做得不同。这些天我会写:

private static IEnumerable<T> GetEnumValues<T>()
{
    // Can't use type constraints on value types, so have to do check like this
    if (typeof(T).BaseType != typeof(Enum))
    {
        throw new ArgumentException("T must be of type System.Enum");
    }

    return Enum.GetValues(typeof(T)).Cast<T>();
}

其他回答

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

已更新过了一段时间,我看到一条评论,让我回到了以前的答案,我想我现在会做得不同。这些天我会写:

private static IEnumerable<T> GetEnumValues<T>()
{
    // Can't use type constraints on value types, so have to do check like this
    if (typeof(T).BaseType != typeof(Enum))
    {
        throw new ArgumentException("T must be of type System.Enum");
    }

    return Enum.GetValues(typeof(T)).Cast<T>();
}

对在System.Enum类中使用GetValues()方法。

是的,您可以使用‍方法‍‍‍s方法:

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)))