get currency English name
Published: 11. October 2011 | Updated: 11. October 2011License: Microsoft Public License (MS-PL)
Categories: Globalization » Currencies
Tags: C# Globalization
Import namespace
using System.Globalization;
Code
var culture = CultureInfo.GetCultureInfo("cs-CZ"); var regionInfo = new RegionInfo(culture.Name); string currencyEnglishName = regionInfo.CurrencyEnglishName; Console.WriteLine(currencyEnglishName);Console Output:
Czech Koruna
| Send us feedback about this snippet » |





