如何遍历C#中的所有枚举值?

时间:2009-06-09 20:25:05

标签: c# .net enums language-features

  

这个问题已经有了答案:
  How do I enumerate an enum in C#? 26个答案

public enum Foos
{
    A,
    B,
    C
}

有没有办法循环使用Foos的可能值?

基本上?

foreach(Foo in Foos)

8 个答案:

答案 0 :(得分:1790)

是的,您可以使用GetValue‍‍‍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>();

答案 1 :(得分:734)

foreach(Foos foo in Enum.GetValues(typeof(Foos)))

答案 2 :(得分:113)

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

答案 3 :(得分:55)

foreach (Foos foo in Enum.GetValues(typeof(Foos)))
{
    ...
}

答案 4 :(得分:32)

<强>已更新
一段时间后,我看到一条评论让我回到原来的答案,我想我现在会采用不同的方式。这些天我写道:

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>();
}

答案 5 :(得分:23)

static void Main(string[] args)
{
    foreach (int value in Enum.GetValues(typeof(DaysOfWeek)))
    {
        Console.WriteLine(((DaysOfWeek)value).ToString());
    }

    foreach (string value in Enum.GetNames(typeof(DaysOfWeek)))
    {
        Console.WriteLine(value);
    }
    Console.ReadLine();
}

public enum DaysOfWeek
{
    monday,
    tuesday,
    wednesday
}

答案 6 :(得分:8)

 Enum.GetValues(typeof(Foos))

答案 7 :(得分:6)

是。在GetValues()课程中使用System.Enum方法。