Get country list in other languages besides english

后端 未结 3 1695
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-19 09:21

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

3条回答
  •  天涯浪人
    2021-02-19 09:56

    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.

提交回复
热议问题