Skip to content

Instantly share code, notes, and snippets.

@MartinDelille
Created August 1, 2012 09:15
Show Gist options
  • Select an option

  • Save MartinDelille/3225323 to your computer and use it in GitHub Desktop.

Select an option

Save MartinDelille/3225323 to your computer and use it in GitHub Desktop.
Enumerating an enum
foreach (Suit suit in Enum.GetValues(typeof(Suit)))
{
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment