NerdyHearn
Home
Blog
Software

Contact
Mailing List

IPhone Products
SMS To Gmail
Voicemail To Gmail
Calls To Calendar

Other Products
TiffWizard

Sites
SaveMySerials
How Long For Me
DocuTerminal

Blog
Twitter

NerdyHearn - Blog


<< 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

Calculating ISO 8601 Date formats in C#, C++, and Java
Enumerating all attributes of an element and adding them to a dictionary using LINQ with Lambda Expressions

Updating an LDAP Property in C#
Reading a Microsoft Project file (mpp) in C#

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:


NerdyHearn - Latest tech news relating to C#, ASP.NET, SharePoint, PHP, general development, and more. DocuTerminal - Online Filing Cabinet solution. Scan, search and archive your paper documents. SaveMySerials - Protect yourself from theft, fire, natural disasters and more by recording your serial numbers SubSonos - Stream your subsonic music collection to your Sonos wireless system