I have the following:
System.Globalization.CultureInfo c = new System.Globalization.CultureInfo(\"en-GB\"); var a = c.DisplayName; var b = c.EnglishName; va
System.Globalization.CultureInfo c = new System.Globalization.CultureInfo("en-GB"); var ri = new RegionInfo(c.Name); string countryName = ri.DisplayName;
That will give you:
"United Kingdom"
For Two Letter Use:
string countryAbbrivation = ri.TwoLetterISORegionName;
That will give you "GB"