public enum Days {
Monday,
Tuesday,
Wednesday
}
foreach(Days day in Enum.GetValues(typeof(Days))) {
}
enum Foos {
Foo,
Bar,
}
foreach(Foos val in Enum.GetValues(typeof(Foos))) {
//Do whatever with the value :D
}
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
}