vote up 0 vote down star

Hi,

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

flag

1 Answer

vote up 2 vote down check

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

link|flag
wow nice thanks. – Aaron Sep 24 at 3:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.