Fill Combobox With Enum Values C

[Solved] Fill Combobox With Enum Values C | Vb - Code Explorer | yomemimo.com
Question : fill combobox with enum values c#

Answered by : scritchle

public enum FakeEnum { 1, 2,
}
Combobox.DataSource = Enum.GetValues(typeof(FakeEnum));

Source : | Last Update : Thu, 17 Dec 20

Answers related to fill combobox with enum values c

Code Explorer Popular Question For Vb