Hi all, Here is my code.
Although it works , There is no "Myanmar(Burma)" in list.
private void PopulateCountryComboBox()
{
RegionInfo country = new RegionInfo(new CultureInfo("en-US", false).LCID);
List<string> countryNames = new List<string>();
foreach (CultureInfo cul in CultureInfo.GetCultures(CultureTypes.SpecificCultures))
{
country = new RegionInfo(new CultureInfo(cul.Name, false).LCID);
countr ...
Go to the complete details ...