I can get the list of country names using below code, (copied from somewhere i can\'t remember)
My question is, can i get the list of countries in other languages such a
Pretty late answer:
In my application the user can select a language (among languages that the application supports) and in the UI I need to display country names in the selected language.
I found that NuGet package IsoNames fullfills that purpose. It provides method
IsoNames.CountryNames.GetName(CultureInfo culture, string countrycode);
and thus overcomes the restrictions implied with the DisplayName
.