public enum Foos
{
A,
B,
C
}
Is there a way to loop through the possible values of Foo?
Basically?
foreach(Foo in Foos)
Is there a way to loop through the possible values of Foo? Basically?
| |||||
feedback
|
|
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:
| |||||||
feedback
|
Credit to Jon Skeet here: http://bytes.com/groups/net-c/266447-how-loop-each-items-enum | |||
|
feedback
|
| |||
|
feedback
|
| |||||
feedback
|
|
Yes. Use "GetValues" method in System.Enum class. | |||
|
feedback
|