Browse by Tags
All Tags »
C# »
Enum (
RSS)
Sorry, but there are no more tags available to filter with.
Today I came across a situation where iterating through an Enum would save me about 10 lines of code and some time. The quickest way is as follows: foreach (MyEnum value in Enum .GetValues( typeof (MyEnum))) { //... }
More Posts