0

Where can I find complete UICulture list like en : English en-us etc...

Tarik
  • 79,711
  • 83
  • 236
  • 349

1 Answers1

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