Answers for "c# foreach enumerate"

C#
4

c# foreach enum

enum Foos {
  Foo,
  Bar,
}

foreach(Foos val in Enum.GetValues(typeof(Foos))) {
  //Do whatever with the value :D
}
Posted by: Guest on October-07-2020

C# Answers by Framework

Browse Popular Code Answers by Language