The following code returns English names despite I localized the currentculture.
List<string> languageList = new List<string>();
CultureInfo[] cultureList = CultureInfo.GetCultures(CultureTypes.AllCultures);
foreach (CultureInfo culture in cultureList)
{
languageList.Add(culture.DisplayName);
}
What if I want the display names say in Italian, or in German or whatever language I specify? Any suggestions?