/ Published in: C#
You can get all countries list by this method. Also you can find some details for countries like; - original name, - three letter ISO region name, - three letter WINDOWS region name, - currency symbol etc..
Expand |
Embed | Plain Text
public static ArrayList GetAllCountires() { foreach (CultureInfo ci in CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures)) { countryList.Add(ri.EnglishName); } return countryList; }
You need to login to post a comment.
