RegionInfo.CurrencyEnglishName Property gets the name of the currency used in the country/region. : RegionInfo « Internationalization I18N « VB.Net






RegionInfo.CurrencyEnglishName Property gets the name of the currency used in the country/region.

 


Imports System
Imports System.Globalization

Class Sample
   Public Shared Sub Main()
      Dim ri As New RegionInfo("SE") ' Sweden
      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)
   End Sub
End Class

   
  








Related examples in the same category

1.Region Info Table
2.RegionInfo Class contains information about the country/region.
3.Compares the RegionInfo above with another RegionInfo created using CultureInfo
4.Creates a RegionInfo using the ISO 3166 two-letter code
5.Creates a RegionInfo using a CultureInfo.LCID
6.RegionInfo.CurrencySymbol Property gets the currency symbol associated with the country/region.
7.RegionInfo.TwoLetterISORegionName Property gets the two-letter code defined in ISO 3166 for the country/region.