get Geo ID for country/region
Published: 11. October 2011 | Updated: 11. October 2011License: Microsoft Public License (MS-PL)
Categories: Globalization » Regions
Tags: C# Globalization
Import namespace
using System.Globalization;
Code
var culture = CultureInfo.GetCultureInfo("en-US"); var regionInfo = new RegionInfo(culture.Name); int geoId = regionInfo.GeoId; Console.WriteLine(geoId);Console Output:
244
| Send us feedback about this snippet » |





