I have a ComboBox and I want to bind a generic List to it. Can anyone see why the code below won\'t work? The binding source has data in it, but it won\'t fill the ComboBox
BindingSource bs = new BindingSource(); bs.DataSource = getprojectname(); comboBox1 = new ComboBox(); comboBox1.DataSource = bs;