Im Trying to get my list in to a combobox by using the following code
List<string> Regions = new List<string>();
Regions.Add("EU");
Regions.Add("NA");
Regions.Add("KR");
Combobox1.DataSource = Regions;
This didn't work when I started the program. I also tried using a foreach like this
foreach (var Region in Regions)
{
Combobox1.Items.Add(Region);
}
Does someone now how to do this,
Thanks