RegionInfo.CurrencyEnglishName Property
.NET Framework 4.5
Gets the name, in English, of the currency used in the country/region.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
The following code example demonstrates the CurrencyEnglishName property.
// This example demonstrates the RegionInfo.EnglishName, NativeName, // CurrencyEnglishName, CurrencyNativeName, and GeoId properties. using System; using System.Globalization; class Sample { public static void Main() { RegionInfo ri = new RegionInfo("SE"); // Sweden 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); } } /* This code example produces the following results: Region English Name: . . . Sweden Native Name: . . . . . . . Sverige Currency English Name: . . Swedish Krona Currency Native Name:. . . Svensk krona Geographical ID: . . . . . 221 */
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.