I wanted to ask if there is a clean and fast way to convert a TwoLetterIsoCode into the english name accordingly using C#?
An example:
US -> United Staates
DE -> Germany
FR -> France
etc.
Just found it out myself aswell :)
private static string GetCountryName(string CountryCode)
{
RegionInfo RegInfo = new RegionInfo(CountryCode);
return RegInfo.EnglishName;
}