Answers for "fill combobox with enum values c#"

C#
0

fill combobox with enum values c#

public enum FakeEnum {
  1,
  2,
}

Combobox.DataSource = Enum.GetValues(typeof(FakeEnum));
Posted by: Guest on December-10-2020

C# Answers by Framework

Browse Popular Code Answers by Language