Mega Code Archive

 
Categories / C# / Internationalization
 

Gets the currency symbol associated with the countryregion

using System; using System.Globalization; public class SamplesRegionInfo  {    public static void Main()  {       // Displays the property values of the RegionInfo for "US".       RegionInfo myRI1 = new RegionInfo( "US" );       Console.WriteLine( "   Name:                         {0}", myRI1.Name );       Console.WriteLine( "   DisplayName:                  {0}", myRI1.DisplayName );       Console.WriteLine( "   EnglishName:                  {0}", myRI1.EnglishName );       Console.WriteLine( "   IsMetric:                     {0}", myRI1.IsMetric );       Console.WriteLine( "   ThreeLetterISORegionName:     {0}", myRI1.ThreeLetterISORegionName );       Console.WriteLine( "   ThreeLetterWindowsRegionName: {0}", myRI1.ThreeLetterWindowsRegionName );       Console.WriteLine( "   TwoLetterISORegionName:       {0}", myRI1.TwoLetterISORegionName );       Console.WriteLine( "   CurrencySymbol:               {0}", myRI1.CurrencySymbol );       Console.WriteLine( "   ISOCurrencySymbol:            {0}", myRI1.ISOCurrencySymbol );    } }