Home
Blog
Contact
Mailing List
Software
Blog
Twitter
|
<< Back To All Blogs
Enumerating the values of an enum in C#
Tuesday, April 7th, 2009
As easy or weird as this may sound, it is not immediately obvious of how you need to go about enumerating the values of an enum in C# so that you can list all options or operate on all the values of an enumeration.
For example, if I have an enum with 4 values, and I want to enumerate over all of them, the example would be as follows:
enum Fruit {
Apple = 1,
Orange = 2,
Banana = 11,
Tomato = 12 // Yes, it's a fruit
}
Then in CSharp, you need to do some type-casting, but you can do so with Enum.GetValues as follows:
foreach (Fruit fruit in Enum.GetValues(typeof(Fruit))) {
// do something here with fruit
// (int)fruit would give you the pure integer value
}
Pretty straight-forward, but it did stump me for a few minutes.
Enumin' Tom Out.
Tags
CSharp
Related Blogs
Generic Method for Loading Interfaces in C# (For a Plugin System)
Using MOSS and WSS SharePoint Workflow to Resize Images in an Image Library
Creating High Quality Images with C# and GDI
Programatically Retrieving an Assembly's PublicKeyToken through a PowerShell CmdLet
Comments
Currently no comments.
Add A Comment
Name:
URL:
Email Address: (not public, used to send notifications on further comments)
Comments:

Enter the text above, except for the 1st and last character:
|