how to fill combobox with enum c# code example
Example: fill combobox with enum values c#
public enum FakeEnum {
1,
2,
}
Combobox.DataSource = Enum.GetValues(typeof(FakeEnum));
public enum FakeEnum {
1,
2,
}
Combobox.DataSource = Enum.GetValues(typeof(FakeEnum));