/ 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..
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
Copy this code and paste it in your HTML
public static ArrayList GetAllCountires() { foreach (CultureInfo ci in CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures)) { countryList.Add(ri.EnglishName); } return countryList; }