Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you enumerate a enum in C#?

e.g. the following does not compile:

public enum Suit
{
    Spades,
    Hearts,
    Clubs,
    Diamonds
}

public void EnumerateAllSuitsDemoMethod()
{
    foreach (Suit suit in Suit)
    {
        DoSomething(suit);
    }
}

It gives the compile time error:

'Suit' is a 'type' but is used like a 'variable'

It fails on the Suit keyword, the 2nd one.

share|improve this question
4  
See also ... stackoverflow.com/questions/972307/… – SteveC Aug 4 '09 at 14:10
1  
It might be easiest just to use Enum.GetValues(typeof(Suit)).Cast<Suit>(). That will give you an IEnumerable<Suit>. – sircodesalot Mar 17 at 4:16

14 Answers

up vote 1189 down vote accepted
foreach (Suit suit in Enum.GetValues(typeof(Suit)))
{
}
share|improve this answer
1  
I've heard vague rumours that this is terifically slow. Anyone know? – Orion Edwards Oct 15 '08 at 1:31
196  
Enumerating an enum with 52 values 100000 times: 3884ms Enumerating an int[] with 52 values 100000 times: 99ms yes, far slower than an array - but still fast unless you have 51 million enum values ;) – TheSoftwareJedi Oct 15 '08 at 1:41
5  
@Jessy.. please tell me why you would have duplicate values in the list? For what possible purpose? – daveL Jul 10 '12 at 17:05
3  
@daveL, check out page 305 of Code Complete (Second Edition): "Define the first and last entries of an enumeration for use as loop limits". – Jessy Sep 6 '12 at 15:39
9  
The compile-time return type of GetValues is System.Array. If you foreach directly, like above, you will get the non-generic IEnumerable implementation of System.Array. This involves boxing all the enum values into an object box, which is then unboxed by the cast present in your foreach. If instead you use foreach (var suit in (Suit[])Enum.GetValues(typeof(Suit))) you don't get any boxing. The cast from Array to Suit[] is one simple reference conversion and happens only once. I can't beleive 181 people upvoted @TheSoftwareJedi's comment on performance without mention of this. – Jeppe Stig Nielsen Apr 15 at 17:57
show 12 more comments

It looks to me like you really want to print out the names of each enum, rather than the values. In which case Enum.GetNames seems to be the right approach.

public enum Suits
{
        Spades,
        Hearts,
        Clubs,
        Diamonds,
        NumSuits
}

public void PrintAllSuits()
{
        foreach(string name in Enum.GetNames(typeof(Suits)))
        {
                System.Console.WriteLine(name);
        }
}

By the way, incrementing the value is not a good way to enumerate the values of an enum. You should do this instead.

I would use Enum.GetValues(typeof(Suit)) instead.

public enum Suits
{
        Spades,
        Hearts,
        Clubs,
        Diamonds,
        NumSuits
}

public void PrintAllSuits()
{
        foreach(var suit in Enum.GetValues(typeof(Suits)))
        {
                System.Console.WriteLine(suit.ToString());
        }
}
share|improve this answer
11  
var is a new keyword in C# 3.0 (.NET 3.5) that says I don't feel like typing out the type of this variable (or don't know it), I want the compiler to infer it for me. You can only use it with assignment in the same statement as the declaration. – Mike Brown Oct 21 '08 at 23:26
11  
@Mike Brown: Hmmm, unknown variable types. Sounds like we're going back to the dark days of typeless and variant languages. shiver – Ian Boyd Jun 1 '10 at 17:45
13  
The variable is still typed in the same way as other variables. It's just that you allow the compiler to infer the type from the RHS of the assignment (it can only be used with assignments, you can't just do var foo;). This is particularly important with LINQ, as the returned types can be quite complex, and not easy to work out yourself. – Matt Sach Jun 3 '10 at 14:36
1  
@Matt Sach: It's fine as long as the type inferred by the compiler is the type i inferred when i wrote it. – Ian Boyd Oct 1 '10 at 21:31
1  
@IanBoyd: Graphain is right, in C#, var is what you need when you may get different types from different queries. but if what you are shivering about is called dynamic typing, then I don't get your point. – Luka Ramishvili Nov 11 '11 at 7:02
show 4 more comments

I made some extensions for easy enum usage, maybe someone can use it...

public static class EnumExtensions
{
    /// <summary>
    /// Gets all items for an enum value.
    /// </summary>
    /// <typeparam name="T"></typeparam>
    /// <param name="value">The value.</param>
    /// <returns></returns>
    public static IEnumerable<T> GetAllItems<T>(this Enum value)
    {
        foreach (object item in Enum.GetValues(typeof(T)))
        {
            yield return (T)item;
        }
    }

    /// <summary>
    /// Gets all items for an enum type.
    /// </summary>
    /// <typeparam name="T"></typeparam>
    /// <param name="value">The value.</param>
    /// <returns></returns>
    public static IEnumerable<T> GetAllItems<T>() where T : struct
    {
        foreach (object item in Enum.GetValues(typeof(T)))
        {
            yield return (T)item;
        }
    }

    /// <summary>
    /// Gets all combined items from an enum value.
    /// </summary>
    /// <typeparam name="T"></typeparam>
    /// <param name="value">The value.</param>
    /// <returns></returns>
    /// <example>
    /// Displays ValueA and ValueB.
    /// <code>
    /// EnumExample dummy = EnumExample.Combi;
    /// foreach (var item in dummy.GetAllSelectedItems<EnumExample>())
    /// {
    ///    Console.WriteLine(item);
    /// }
    /// </code>
    /// </example>
    public static IEnumerable<T> GetAllSelectedItems<T>(this Enum value)
    {
        int valueAsInt = Convert.ToInt32(value, CultureInfo.InvariantCulture);

        foreach (object item in Enum.GetValues(typeof(T)))
        {
            int itemAsInt = Convert.ToInt32(item, CultureInfo.InvariantCulture);

            if (itemAsInt == (valueAsInt & itemAsInt))
            {
                yield return (T)item;
            }
        }
    }

    /// <summary>
    /// Determines whether the enum value contains a specific value.
    /// </summary>
    /// <param name="value">The value.</param>
    /// <param name="request">The request.</param>
    /// <returns>
    ///     <c>true</c> if value contains the specified value; otherwise, <c>false</c>.
    /// </returns>
    /// <example>
    /// <code>
    /// EnumExample dummy = EnumExample.Combi;
    /// if (dummy.Contains<EnumExample>(EnumExample.ValueA))
    /// {
    ///     Console.WriteLine("dummy contains EnumExample.ValueA");
    /// }
    /// </code>
    /// </example>
    public static bool Contains<T>(this Enum value, T request)
    {
        int valueAsInt = Convert.ToInt32(value, CultureInfo.InvariantCulture);
        int requestAsInt = Convert.ToInt32(request, CultureInfo.InvariantCulture);

        if (requestAsInt == (valueAsInt & requestAsInt))
        {
            return true;
        }

        return false;
    }
}

The enum itself must be decorated with the FlagsAttribute

[Flags]
public enum EnumExample
{
    ValueA = 1,
    ValueB = 2,
    ValueC = 4,
    ValueD = 8,
    Combi = ValueA | ValueB
}
share|improve this answer
5  
+1 for the effort. – Ikke Jun 3 '09 at 12:27
+1 lots of useful info, and the extensions. – Maslow Feb 8 '10 at 17:51
1  
how to use these extensions ? – Khalil Dahab Jun 13 '10 at 23:47
3  
A one liner for the first extension method; it's no more lazy. return Enum.GetValues(typeof(T)).Cast<T>(); – Leyu Jun 22 '10 at 9:29
1  
+1 for providing a full set of extensions :) – guillegr123 Nov 21 '12 at 21:30
show 4 more comments

The .NET compact framework does not support Enum.GetValues. Here's a good workaround from Ideas 2.0: Enum.GetValues in Compact Framework:

public IEnumerable<Enum> GetValues(Enum enumeration)
{
   List<Enum> enumerations = new List<Enum>();
   foreach (FieldInfo fieldInfo in enumeration.GetType().GetFields(
         BindingFlags.Static | BindingFlags.Public))
   {
      enumerations.Add((Enum)fieldInfo.GetValue(enumeration));
   }
   return enumerations;
}
share|improve this answer
2  
Nice addition - just what I was looking for :-) – skolima Feb 3 '10 at 13:17
4  
Why not use the yield keyword here instead instantiating a list? – Eric Mickelsen Jan 16 '11 at 22:18
The code I work with doesn't work well with yield return. If I was sure it worked I'd use yield return. – Ekevoo Feb 14 '11 at 23:11
Also, yield return also instantiates an object, so there's no real benefit unless your enums have thousands of possible values. – Ekevoo Mar 20 '12 at 15:58

I think this is more efficient than other suggestions because GetValues() is not called each time you have a loop. It is also more concise. And you get a compile-time error not a runtime exception if Suit is not an enum.

EnumLoop<Suit>.ForEach((suit) => {
    DoSomethingWith(suit);
});

EnumLoop has this completely generic definition:

class EnumLoop<Key> where Key : struct, IConvertible {
    static readonly Key[] arr = (Key[])Enum.GetValues(typeof(Key));
    static internal void ForEach(Action<Key> act) {
        for (int i = 0; i < arr.Length; i++) {
            act(arr[i]);
        }
    }
}
share|improve this answer
2  
+1 for novel use of generics and linq queries. Although i would smack anyone who used it in practice. – Ian Boyd Feb 2 '12 at 19:02
1  
Ian, thanks for the +1. I am new to C# and I am keen explore and learn best practice. I do use it in practice; why I deserve a smack? – James Feb 3 '12 at 11:46
3  
Careful with using generics like this. If you try to use EnumLoop with some type that is not an enum, it will compile fine, but throw an exception at runtime. – svick Feb 6 '12 at 12:09
1  
Thank you svick. Runtime exceptions will actually occur with the other answers on this page... except this one because I have added "where Key : struct, IConvertible" so that you get a compile time error in most cases. – James Feb 7 '12 at 12:13
2  
No, GetValues() is called only once in the foreach. – Alex Blokha Jul 30 '12 at 11:25

You won't get Enum.GetValues() in Silverlight.

Original Blog Post by Einar Ingebrigtsen:

public class EnumHelper
{
    public static T[] GetValues<T>()
    {
        Type enumType = typeof(T);

        if (!enumType.IsEnum)
        {
            throw new ArgumentException("Type '" + enumType.Name + "' is not an enum");
        }

        List<T> values = new List<T>();

        var fields = from field in enumType.GetFields()
                     where field.IsLiteral
                     select field;

        foreach (FieldInfo field in fields)
        {
            object value = field.GetValue(enumType);
            values.Add((T)value);
        }

        return values.ToArray();
    }

    public static object[] GetValues(Type enumType)
    {
        if (!enumType.IsEnum)
        {
            throw new ArgumentException("Type '" + enumType.Name + "' is not an enum");
        }

        List<object> values = new List<object>();

        var fields = from field in enumType.GetFields()
                     where field.IsLiteral
                     select field;

        foreach (FieldInfo field in fields)
        {
            object value = field.GetValue(enumType);
            values.Add(value);
        }

        return values.ToArray();
    }
}
share|improve this answer

Just to add my solution, which works in compact framework (3.5) and supports Type checking at compile time:

public static List<T> GetEnumValues<T>() where T : new() {
    T valueType = new T();
    return typeof(T).GetFields()
        .Select(fieldInfo => (T)fieldInfo.GetValue(valueType))
        .Distinct()
        .ToList();
}

public static List<String> GetEnumNames<T>() {
    return typeof (T).GetFields()
        .Select(info => info.Name)
        .Distinct()
        .ToList();
}

- If anyone knows how to get rid of the "T valueType = new T()", I'd be happy to see a solution.

A call would look like this:

List<MyEnum> result = Utils.getEnumValues<MyEnum>();
share|improve this answer
2  
what about using T valueType = default(T)? – Oliver Jul 7 '10 at 14:17
Great, I didn't even know that keyword. Always nice to learn something new. Thank you! Does it always return a reference to the same object, or does it create a new instance each time the default statement is called? I haven't found anything on the net about this so far, but if it creates a new instance every time, it kind of defeats the purpose I was looking for (having a one-liner ^^). – Mallox Jul 8 '10 at 6:48
.GetValue(new T())? – Jason Miesionczek Jun 21 '11 at 2:33
Wouldn't this create a new instance for every iteration over the enumeration? – Mallox Jun 28 '11 at 15:04
public void PrintAllSuits()
	{
		foreach(string suit in Enum.GetNames(typeof(Suits)))
		{
			Console.WriteLine(suit);
		}
	}
share|improve this answer
That enumerates a string, don't forget to convert those things back to an enumeration value so the enumeration can be enumerated. – Ian Boyd Jun 1 '10 at 17:46
I see from your edit that you want to actually operate on the enums themselves, the above code addressed your original post. – Joshua Drake Jun 4 '10 at 15:22
> foreach (Suit suit in Enum.GetValues(typeof(Suit))) { }

I've heard vague rumours that this is terifically slow. Anyone know? – Orion Edwards Oct 15 '08 at 1:31 7

I think caching the array would speed it up considerably. It looks like you're getting a new array (through reflection) every time. Rather:

Array ar = Enum.GetValues(typeof(Suit));
foreach(Suit temp_suit in ar) Do_Something(temp_suit);

That's at least a little faster, ja?

share|improve this answer

I think you can use

Enum.GetNames(Suit)
share|improve this answer
Enum.GetValues(Suits) – Ian Boyd Sep 22 '08 at 14:43

I use ToString() then split and parse the spit array in flags.

[Flags]
public enum ABC {
 a = 1,
 b = 2,
 c = 4
};

public IEnumerable<ABC> Getselected (ABC flags)
{

 var values = value.ToString().Split(',');
 var enums = values.Select(x => (ABC)Enum.Parse(typeof(ABC), x.Trim()));
 return enums;


}

ABC temp= ABC.a | ABC.b;
var list = getSelected ( temp );
foreach (var item in list)
{
  Console.WriteLine(item.ToString() + " ID=" + (int)item);
}
share|improve this answer

here is a working example of creating select options for a DDL

var resman = ViewModelResources.TimeFrame.ResourceManager;
ViewBag.TimeFrames = from MapOverlayTimeFrames timeFrame in Enum.GetValues(typeof (MapOverlayTimeFrames))
                        select new SelectListItem
                            {
                                Value = timeFrame.ToString(),
                                Text = resman.GetString(timeFrame.ToString()) ?? timeFrame.ToString()
                            };
share|improve this answer

I do not hold the opinion this is better, or even good, just stating yet another solution.

If enum values range strictly from 0 to n - 1, a generic alternative:

public void EnumerateEnum<T>()
{
    int length = Enum.GetValues(typeof(T)).Length;
    for (var i = 0; i < length; i++)
    {
        var @enum = (T)(object)i;
    }
}

If enum values are contiguous and you can provide the first and last element of the enum, then:

public void EnumerateEnum()
{
    for (var i = Suit.Spade; i <= Suit.Diamond; i++)
    {
        var @enum = i;
    }
}

but that's not strictly enumerating, just looping. The second method is much faster than any other approach though...

share|improve this answer

Why is no one using Cast?

var suits = Enum.GetValues(typeof(Suit)).Cast<Suit>();

There you go IEnumerable<Suit>.

share|improve this answer

protected by ken2k May 1 at 11:29

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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