A int between 0 and 3 inclusive, containing the format of positive currency values.
Type Reason ArgumentOutOfRangeException The value specified for a set operation is less than 0 or greater than 3. InvalidOperationException The current instance is read-only and a set operation was attempted.
The NumberFormatInfo.CurrencyPositivePattern property is used with the "C" standard format string to define pattern of positive currency values. For more information, see Standard Numeric Format Strings. This property has one of the values in the following table. The symbol "$" is the NumberFormatInfo.CurrencySymbol and n is a number.
0 |
$n |
1 |
n$ |
2 |
$ n |
3 |
n $ |
Note that the pattern does not support a positive sign.
The following example demonstrates the effects of different NumberFormatInfo.CurrencyPositivePattern property values.
C# Example
using System; using System.Globalization; class Test { public static void Main() { NumberFormatInfo nfi = new NumberFormatInfo(); decimal myMoney = 9999999999999.00m; for (int i = 0; i<=3; i++) { nfi.CurrencyPositivePattern = i; Console.WriteLine("pattern # {0}: {1}",i,myMoney.ToString("C",nfi)); } } }
The output is
pattern # 0: $9,999,999,999,999.00