Answers for "create loop with enum"

C#
5

enum loop

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
1

loop over enum values

var values = Enum.GetValues(typeof(EnumName));

foreach (var value in values)
{
	Combobox.Items.Add(value.ToString());
}
Posted by: Guest on May-21-2020

C# Answers by Framework

Browse Popular Code Answers by Language