W W.G. Ryan eMVP Jun 14, 2005 #2 I really doubt there's a framework class that holds these since they are subject to change. This should help you though.
I really doubt there's a framework class that holds these since they are subject to change. This should help you though.
L Ludovic SOEUR Jun 14, 2005 #3 Try with this kind of code, there are a lot of interesting things in System.Globalization : foreach(CultureInfo ci in CultureInfo.GetCultures(CultureTypes.AllCultures)) { MessageBox.Show(ci.Name+" ("+ci.NativeName+")"); } Hope it helps, Ludovic SOEUR.
Try with this kind of code, there are a lot of interesting things in System.Globalization : foreach(CultureInfo ci in CultureInfo.GetCultures(CultureTypes.AllCultures)) { MessageBox.Show(ci.Name+" ("+ci.NativeName+")"); } Hope it helps, Ludovic SOEUR.