Finding the user’s current region using RegionInfo in .NET C#

The CultureInfo object helps a lot in finding information about the user’s current culture. However, on occasion it may not be enough and you need to find out more about that user’s regional characteristics. You can easily retrieve a RegionInfo object from CultureInfo which will hold information about a particular country or region.

You can find the current region in two ways from CultureInfo:

CultureInfo cultureInfo = Thread.CurrentThread.CurrentCulture;
RegionInfo regionInfo = new RegionInfo(cultureInfo.LCID);
// or 
regionInfo = new RegionInfo(cultureInfo.Name);

string englishName = regionInfo.EnglishName;
string currencySymbol = regionInfo.CurrencySymbol;
string currencyEnglishName = regionInfo.CurrencyEnglishName;
string currencyLocalName = regionInfo.CurrencyNativeName;

My computer is set to use Swedish-Sweden as the specific culture so I get the following values from top to bottom:

  • Sweden
  • kr
  • Swedish krona
  • Svensk krona

If I change the current culture to my home country, i.e. Hungary…

CultureInfo hungaryCulture = new CultureInfo("hu-HU");
Thread.CurrentThread.CurrentCulture = hungaryCulture;
regionInfo = new RegionInfo(hungaryCulture.LCID);
englishName = regionInfo.EnglishName;
currencySymbol = regionInfo.CurrencySymbol;
currencyEnglishName = regionInfo.CurrencyEnglishName;
currencyLocalName = regionInfo.CurrencyNativeName;

…then the values are of course adjusted accordingly:

  • Hungary
  • Ft
  • Hungarian Forint
  • forint

Read all posts related to Globalisation in .NET here.

Unknown's avatarAbout Andras Nemes
I'm a .NET/Java developer living and working in Stockholm, Sweden.

4 Responses to Finding the user’s current region using RegionInfo in .NET C#

  1. Mehran's avatar Mehran says:

    Reblogged this on Coding Tips and commented:
    That’s really Cool !!

  2. kiquenet's avatar kiquenet says:

    Not same Control Panel: Regional and language options->Standards and formats than Control Panel: Regional and language options->Location

    using (var regKeyGeo = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@”Control Panel\International\Geo”))
    {
    Response.Write(“Geo Nation ” + regKeyGeo.GetValue(“Nation”).ToString());
    }

    var iso2 = “US”;
    var cultureInfo = CultureInfo.GetCultures(CultureTypes.AllCultures).Where(c => c.Name.EndsWith(iso2)).ToList();

    foreach (System.Globalization.CultureInfo culture in cultureList)
    {

    Response.Write(” Culture for ” + iso2 + “: ” + culture.DisplayName
    + ” *** ” + culture.NativeName + ” ” + culture.TwoLetterISOLanguageName
    + ” – ” + culture.ThreeLetterISOLanguageName
    + ” – ” + culture.DateTimeFormat.FullDateTimePattern);

    }

    For US you get chr-US en-US es-US and haw-US : Cheroqui, English, Spanish, Hawai

    http://stackoverflow.com/questions/8926400/get-cultureinfo-object-from-country-name-or-regioninfo-object

  3. masasih's avatar masasih says:

    Great article.

Leave a comment

Elliot Balynn's Blog

A directory of wonderful thoughts

Software Engineering

Web development

Disparate Opinions

Various tidbits

chsakell's Blog

WEB APPLICATION DEVELOPMENT TUTORIALS WITH OPEN-SOURCE PROJECTS

Once Upon a Camayoc

ARCHIVED: Bite-size insight on Cyber Security for the not too technical.