Question

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

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top