NumberFormatInfo.CurrencyDecimalDigits Property
.NET Framework 2.0
Indicates the number of decimal places to use in currency values.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
/** @property */ public int get_CurrencyDecimalDigits () /** @property */ public void set_CurrencyDecimalDigits (int value)
public function get CurrencyDecimalDigits () : int public function set CurrencyDecimalDigits (value : int)
Property Value
The number of decimal places to use in currency values. The default for InvariantInfo is 2.| Exception type | Condition |
|---|---|
| The property is being set to a value that is less than 0 or greater than 99. | |
| The property is being set and the NumberFormatInfo is read-only. |
The following code example demonstrates the effect of changing the CurrencyDecimalDigits property.
using System; using System.Globalization; class NumberFormatInfoSample { public static void Main() { // Gets a NumberFormatInfo associated with the en-US culture. NumberFormatInfo nfi = new CultureInfo( "en-US", false ).NumberFormat; // Displays a negative value with the default number of decimal digits (2). Int64 myInt = -1234; Console.WriteLine( myInt.ToString( "C", nfi ) ); // Displays the same value with four decimal digits. nfi.CurrencyDecimalDigits = 4; Console.WriteLine( myInt.ToString( "C", nfi ) ); } } /* This code produces the following output. ($1,234.00) ($1,234.0000) */
import System.*;
import System.Globalization.*;
class NumberFormatInfoSample
{
public static void main(String[] args)
{
// Gets a NumberFormatInfo associated with the en-US culture.
NumberFormatInfo nfi =
(new CultureInfo("en-US", false)).get_NumberFormat();
// Displays a negative value with the default number of decimal
// digits (2).
Int64 myInt = (Int64)(-1234);
Console.WriteLine(myInt.ToString("C", nfi));
// Displays the same value with four decimal digits.
nfi.set_CurrencyDecimalDigits(4);
Console.WriteLine(myInt.ToString("C", nfi));
} //main
} //NumberFormatInfoSample
/*
This code produces the following output.
($1,234.00)
($1,234.0000)
*/
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: