I have a dictionary of values named "odDict". When i use the following code it only adds the first value in the dictionary. How can i get it to populate the list using all values in the dictionary?
foreach (KeyValuePair<string, string> kvp in odDict)
{
string key = kvp.Key;
string val = kvp.Value;
cmbOverlayDistrict.Items.Add(val);
}