using System; using System.Globalization; public class Test { public static void Main() { CultureInfo culture = new CultureInfo("fr-FR", false); NumberFormatInfo numberFormatInfo = (NumberFormatInfo)culture.NumberFormat.Clone(); numberFormatInfo.CurrencySymbol = "CHF"; numberFormatInfo.CurrencyPositivePattern = 1; Console.WriteLine((1.5M).ToString("C", numberFormatInfo)); } }