Gets the name, in English, of the currency used in the country/region. : RegionInfo « Internationalization I18N « C# / C Sharp






Gets the name, in English, of the currency used in the country/region.

 

using System;
using System.Globalization;

class Sample 
{
    public static void Main() 
    {
        RegionInfo ri = new RegionInfo("SE");
    
        Console.Clear();
        Console.WriteLine("Region English Name: . . . {0}", ri.EnglishName);
        Console.WriteLine("Native Name: . . . . . . . {0}", ri.NativeName);
        Console.WriteLine("Currency English Name: . . {0}", ri.CurrencyEnglishName);
        Console.WriteLine("Currency Native Name:. . . {0}", ri.CurrencyNativeName);
        Console.WriteLine("Geographical ID: . . . . . {0}", ri.GeoId);
    }
}

   
  








Related examples in the same category

1.RegionInfo contains information about the country/region.
2.Create RegionInfo class based on the country/region associated with the specified culture identifier.
3.Gets the currency symbol associated with the country/region.