top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How can you enumerate a enum in C#?

+2 votes
174 views
How can you enumerate a enum in C#?
posted Jun 25, 2015 by Manikandan J

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer
public enum Suits
{
    Spades,
    Hearts,
    Clubs,
    Diamonds,
    NumSuits
}

public void PrintAllSuits()
{
    foreach (string name in Enum.GetNames(typeof(Suits)))
    {
        System.Console.WriteLine(name);
    }
}
answer Jun 26, 2015 by Shivaranjini
...