Where can I find complete UICulture list like en : English en-us etc...
Asked
Active
Viewed 2,162 times
1 Answers
6
You can enumerate all the cultures that are installed on the system by doing this:
CultureInfo[] allCultures = CultureInfo.GetCultures(CultureTypes.AllCultures);
You can use the CultureInfo.Name
property to get the strings like "en-US".
If you're just looking for a web page that lists them all, I found this one: http://samples.basicdatepicker.com/cultureinfo.aspx

womp
- 115,835
- 26
- 236
- 269
-
@Constanta you can use this [link](https://web.archive.org/web/20090219205939/http://samples.basicdatepicker.com/cultureinfo.aspx) to waybackmachine – William-H-M Jan 25 '19 at 16:06