views:

469

answers:

1

Hi,

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

+2  A: 

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
wow nice thanks.
Braveyard