NumberFormatInfo.CurrencyDecimalSeparator gets or sets the string to use as the decimal separator in currency values. : NumberFormatInfo « Internationalization I18N « C# / C Sharp






NumberFormatInfo.CurrencyDecimalSeparator gets or sets the string to use as the decimal separator in currency values.

 

using System;
using System.Globalization;

class NumberFormatInfoSample {

   public static void Main() {

      NumberFormatInfo nfi = new CultureInfo( "en-US", false ).NumberFormat;

      Int64 myInt = 123456789;
      Console.WriteLine( myInt.ToString( "C", nfi ) );

      nfi.CurrencyDecimalSeparator = " ";
      Console.WriteLine( myInt.ToString( "C", nfi ) );

   }
}

   
  








Related examples in the same category

1.Use NumberFormatInfo to format a number
2.Set NumberGroupSeparator
3.NumberFormatInfo.CurrencyDecimalDigits indicates the number of decimal places to use in currency values.