Reputation: 10463
in Windows 8 C# WindowsStore app if I call
System.Globalization.RegionInfo.CurrentRegion
I get US, although in Control Panel - Region I have location and language = UK...
How do I get country of the device NOT using geolocation?
Upvotes: 0
Views: 1315
Reputation: 125620
var region = new Windows.Globalization.GeographicRegion();
Parameterless constructor of GeographicRegion sreates a GeographicRegion object that defaults to the user's home region.
Upvotes: 4