I want to be able to get RegionInfo by doing the following:
RegionInfo
new RegionInfo(\"United Kingdom\");
but this throws an exception a
From MSDN;
A string that contains a two-letter code defined in ISO 3166 for country/region.
UNITED KINGDOM looks ok on Country names and code elements on the ISO website.
UNITED KINGDOM
GB UNITED KINGDOM
Try with;
new RegionInfo("GB");