Iterate through an enumeration (Enum) in C#
In the C# language, the enum type (aka enumeration) is a user-defined value type used to represent a list of named integer constants. Enums are really useful when you want to generate dropdowns with well-known values (ex: a drop-down of weekdays, months, etc.), user-defined code flags. Even though declaring enums is very straightforward, there are many […]
Iterate through an enumeration (Enum) in C# Read More »




