Possible Duplicate:
How to enumerate an enum?
public enum Foos { A, B, C }
Is there a way to loop through the possible values of Foo?
Basically?
foreach(Foo in Foos)
public enum Foos { A, B, C } Is there a way to loop through the possible values of Foo? Basically?
|
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Yes you can use the GetValues method
Or the typed version
I long ago added a helper function to my private library for just such an occasion
Usage:
|
|||||||||||||||
|
Credit to Jon Skeet here: http://bytes.com/groups/net-c/266447-how-loop-each-items-enum |
|||
|
|
|
UPDATED
|
|||||||
|
|
Yes. Use "GetValues" method in System.Enum class. |
|||
|
|
|
|||||||||
|