NumberFormatInfo.CurrencyDecimalDigits Property
.NET Framework 3.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)
Not applicable.
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.
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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: