loop through all enum values in C#

108

loop through all enum values in C# -

var values = Enum.GetValues(typeof(Foos));
foreach(Foos foo in values) {
	// do something, use foo
}

// or
foreach(Foos foo in Enum.GetValues(typeof(Foos))) {
	// do something, use foo
}

Comments

Submit
0 Comments