This is a mirror of official site: http://jasper-net.blogspot.com/

Hidden Gems inside .Net Classes

| Wednesday, August 1, 2012
Surprisingly, there are loads of great data snippets hidden inside .Net classes. If you've ever found yourself adding localization to your website, you may have come across the CultureInfo Class in .Net. I know that sometimes I have needed to get a list of country ISO codes and have struggled to get a comprehensive list, or I have needed to retrieve the list from a Database containing the names. This can add an extra Database call and could result in extra code maintenance, and possibly a performance hit.

Well, this is where CultureInfo comes to the rescue. Using this Class, you will be able to easily retrieve a list of country names and their ISO codes using built-in .Net code.

Dictionary<string, string> cultureDetails = new Dictionary<string, string>();

   foreach (CultureInfo cultureInfo in CultureInfo.GetCultures(CultureTypes.SpecificCultures))
   {
      RegionInfo regionInfo = new RegionInfo(cultureInfo.Name);

      if (!cultureDetails.ContainsKey(regionInfo.EnglishName))
      {
      cultureDetails.Add(regionInfo.EnglishName, regionInfo.Name);
      }
   }

var orderedCultureDetails = cultureDetails.OrderBy(x => x.Key);

Which gives you a list of 128 countries and their region information:

Inline image 1

QR: Inline image 2

Posted via email from Jasper-net

0 comments: