public enum Foos
{
    A,
    B,
    C
}

Is there a way to loop through the possible values of Foo?

Basically?

foreach(Foo in Foos)
link|improve this question

feedback

8 Answers

up vote 167 down vote accepted

Yes you can use the GetValues method

var values = Enum.GetValues(typeof(Foos));

Or the typed version

var values = Enum.GetValues(typeof(Foos)).Cast<Foos>();

I long ago added a helper function to my private library for just such an occasion

public static class EnumUtil {
  public static IEnumerable<T> GetValues<T>() {
    return Enum.GetValues(typeof(T)).Cast<T>();
  }
}

Usage:

var values = EnumUtil.GetValues<Foos>();
link|improve this answer
4  
Nice use of Cast. – RichardOD Jun 9 '09 at 20:32
like the templated snippet! – ioWint Nov 2 '11 at 16:56
feedback
foreach(Foos foo in Enum.GetValues(typeof(Foos)))
link|improve this answer
feedback
foreach (EMyEnum val in Enum.GetValues(typeof(EMyEnum)))
{
   Console.WriteLine(val);
}

Credit to Jon Skeet here: http://bytes.com/groups/net-c/266447-how-loop-each-items-enum

link|improve this answer
feedback
foreach (Foos foo in Enum.GetValues(typeof(Foos)))
{
    ...
}
link|improve this answer
feedback
    /// <summary>
    /// Returns a generic list of all values for an enum.
    /// Taken from http://devlicio.us/blogs/joe_niland/archive/2006/10/10/Generic-Enum-to-List_3C00_T_3E00_-converter.aspx
    /// </summary>
    /// <typeparam name="T"></typeparam>
    /// <returns></returns>
    public static IList<T> EnumToList<T>()
    {
        Type enumType = typeof(T);

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

        Array enumValArray = Enum.GetValues(enumType);

        List<T> enumValList = new List<T>(enumValArray.Length);

        foreach (int val in enumValArray)
        {
            enumValList.Add((T)Enum.Parse(enumType, val.ToString()));
        }

        return enumValList;
    }
link|improve this answer
that could come in handy – Hardryv Jan 18 at 17:02
feedback
    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
    }
}
link|improve this answer
3  
haha. damit studio, why do you not open quicker ;) – dbones Jun 9 '09 at 20:33
feedback

Yes. Use "GetValues" method in System.Enum class.

link|improve this answer
feedback
 Enum.GetValues(typeof(Foos))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.