vote up 28 vote down star
20

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.

Edit: Got rid of Console.WriteLine(), it was confusing people

flag

56% accept rate
See also ... stackoverflow.com/questions/972307/… – SteveC Aug 4 at 14:10

9 Answers

vote up 85 vote down check
foreach (Suit suit in Enum.GetValues(typeof(Suit)))
{
}
link|flag
I didn't know that. Nice to know! – unforgiven3 Sep 19 '08 at 20:39
I've heard vague rumours that this is terifically slow. Anyone know? – Orion Edwards Oct 15 '08 at 1:31
9  
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
Although, you're missing a close bracket on the foreach line :-) – Hainesy Aug 7 at 14:17
@Hainesy - haha! stackoverflow needs more than a syntax hilighter. it needs a syntax checker. fixed. – jop Aug 13 at 10:38
vote up 0 vote down
> 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?

link|flag
vote up 0 vote down

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;
}
link|flag
vote up 14 vote down

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

//
// Author: Bob Maes <bob.maes@euhm.be>
//

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>
    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>
    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
}
link|flag
+1 for the effort. – Ikke Jun 3 at 12:27
vote up 0 vote down

it works with

foreach (string _name in Enum.GetNames(typeof(Suits)) { ... }
link|flag
That enumerates a string; don't forget in the loop to conver the string to a Suit. – Ian Boyd May 31 at 19:44
vote up 0 vote down
public void PrintAllSuits()
	{
		foreach(string suit in Enum.GetNames(typeof(Suits)))
		{
			Console.WriteLine(suit);
		}
	}
link|flag
vote up 5 vote down

Also I believe you're supposed to call it "Suit" not "Suits", unless you're going to be bitwise or-ing the values together, which you probably aren't, since suits themselves are mutually exclusive.

link|flag
i'm back and forth on that. But i changed the OP to singular. – Ian Boyd Sep 22 '08 at 14:44
vote up 22 vote down

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

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());
        }
}
link|flag
What does the "var" in "var suit" mean? i'm not familiar with that syntax. – Ian Boyd Sep 22 '08 at 14:43
4  
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
vote up 0 vote down

Enum.GetNames(Suits), I think...

link|flag
Enum.GetValues(Suits) – Ian Boyd Sep 22 '08 at 14:43

Your Answer

Get an OpenID
or

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