public sealed class NumberFormatInfo : ICloneable, IFormatProvider
Object
NumberFormatInfoThis type implements ICloneable and IFormatProvider.
mscorlib
BCL
Supplies culture-specific formatting information for string representations of numeric values.
NumberFormatInfo supplies symbols such as currency symbols and decimal separators.[Note: A NumberFormatInfo instance typically contains the set of symbols for a specific language and culture. Instances of NumberFormatInfo can be created to provide customized formatting information. ]
System.Globalization Namespace
NumberFormatInfo Constructors
NumberFormatInfo Methods
NumberFormatInfo.Clone Method
NumberFormatInfo.GetFormat Method
NumberFormatInfo.ReadOnly Method
NumberFormatInfo Properties
NumberFormatInfo.CurrencyDecimalDigits Property
NumberFormatInfo.CurrencyDecimalSeparator Property
NumberFormatInfo.CurrencyGroupSeparator Property
NumberFormatInfo.CurrencyGroupSizes Property
NumberFormatInfo.CurrencyNegativePattern Property
NumberFormatInfo.CurrencyPositivePattern Property
NumberFormatInfo.CurrencySymbol Property
NumberFormatInfo.CurrentInfo Property
NumberFormatInfo.InvariantInfo Property
NumberFormatInfo.IsReadOnly Property
NumberFormatInfo.NaNSymbol Property
NumberFormatInfo.NegativeInfinitySymbol Property
NumberFormatInfo.NegativeSign Property
NumberFormatInfo.NumberDecimalDigits Property
NumberFormatInfo.NumberDecimalSeparator Property
NumberFormatInfo.NumberGroupSeparator Property
NumberFormatInfo.NumberGroupSizes Property
NumberFormatInfo.NumberNegativePattern Property
NumberFormatInfo.PerMilleSymbol Property
NumberFormatInfo.PercentDecimalDigits Property
NumberFormatInfo.PercentDecimalSeparator Property
NumberFormatInfo.PercentGroupSeparator Property
NumberFormatInfo.PercentGroupSizes Property
NumberFormatInfo.PercentNegativePattern Property
NumberFormatInfo.PercentPositivePattern Property
NumberFormatInfo.PercentSymbol Property
NumberFormatInfo.PositiveInfinitySymbol Property
NumberFormatInfo.PositiveSign Property
public NumberFormatInfo();
Constructs and initializes a new instance of the NumberFormatInfo class.
The new instance is not read-only, and is otherwise identical to the NumberFormatInfo instance returned by the System.Globalization.NumberFormatInfo.InvariantInfo property.
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public object Clone();
Creates a copy of the current instance.
A Object that is a copy of the current instance.
The System.Globalization.NumberFormatInfo.Clone method returns a new instance of NumberFormatInfo with property values that are equal to the property values of the current instance except for the System.Globalization.DateTimeFormatInfo.IsReadOnly property, which is alwaysfalse
.[Note: This method is implemented to support the ICloneable interface.]
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public object GetFormat(Type formatType);
Returns an object of the specified type that provides formatting services.
- formatType
- The Type of the formatting object to be returned.
The current instance, if formatType is of type NumberFormatInfo; otherwise, a null reference.
[Note: This method is implemented to support the IFormatProvider interface.]
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public static NumberFormatInfo ReadOnly(NumberFormatInfo nfi);
Creates a read-only copy of the specified NumberFormatInfo instance.
- nfi
- A NumberFormatInfo object to copy.
A Object that is a copy of the current instance, and cannot be altered.
Exception Type Condition ArgumentNullException nfi is a null reference.
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int CurrencyDecimalDigits { get; set; }
Gets or sets the number of decimal places in currency values.
A Int32 containing the number of decimal places in currency values.
Exception Type Condition ArgumentOutOfRangeException The value specified for a set operation is less than 0 or greater than 99. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is 2.
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string CurrencyDecimalSeparator { get; set; }
Gets or sets the symbol used as the decimal separator in currency values.
A String containing the decimal separator used in currency values.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is ".".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string CurrencyGroupSeparator { get; set; }
Gets or sets the symbol used to separate groups of digits to the left of the decimal point in currency values.
A String containing the group separator used in currency values.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is ",".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int[] CurrencyGroupSizes { get; set; }
Gets or sets the number of digits in each group to the left of the decimal point in currency values.
A Int32 array containing elements that define the number of digits in each group in currency values.
Exception Type Condition ArgumentNullException The array specified for a set operation is a null reference.
ArgumentException One of the elements in the array specified for a set operation is not between 0 and 9. -or-
The array contains an element, other than the last element, that is set to 0.
InvalidOperationException The current instance is read-only and a set operation was attempted.
All elements of the array except the last are required to be between 1 and 9, inclusive. The last element can be 0.The first element of the array defines the number of elements in the first group of digits located immediately to the left of the System.Globalization.NumberFormatInfo.CurrencyDecimalSeparator. Each subsequent element refers to the next group of digits located to the left of the previous group. If the last element of the array is not zero, any remaining digits are grouped based on the last element of the array. If the last element is zero, the remaining digits are not grouped.
The culture-invariant value for this property is an array with a single element containing the value 3.
The following example demonstrates the effects of different System.Globalization.NumberFormatInfo.CurrencyGroupSizes property values.
using System; using System.Globalization; class Test { public static void Main() { NumberFormatInfo nfi = new NumberFormatInfo(); decimal myMoney = 9999999994444333221.00m; nfi.CurrencyGroupSizes = new int[] {1,2,3,4,0}; Console.WriteLine("{0}",myMoney.ToString("C",nfi)); myMoney = 123456789123456.78m; nfi.CurrencyGroupSizes = new int[] {3}; Console.WriteLine("{0}",myMoney.ToString("C",nfi)); nfi.CurrencyGroupSizes = new int[] {3,0}; Console.WriteLine("{0}",myMoney.ToString("C",nfi)); } }The output is
$999999999,4444,333,22,1.00
$123,456,789,123,456.78
$123456789123,456.78
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int CurrencyNegativePattern { get; set; }
Gets or sets the format of negative currency values.
A Int32 between 0 and 15 inclusive, which specifies the format of negative currency values.
Exception Type Condition ArgumentOutOfRangeException The value specified for a set operation is less than 0 or greater than 15. InvalidOperationException The current instance is read-only and a set operation was attempted.
The following table describes the valid values for this property. "$" is used as the value for System.Globalization.NumberFormatInfo.CurrencySymbol, "-" is used as the value for System.Globalization.NumberFormatInfo.NegativeSign, and 999 represents any numeric value.
The culture-invariant value for this property is 0.
Value Pattern 0 ($999) 1 -$999 2 $-999 3 $999- 4 (999$) 5 -999$ 6 999-$ 7 999$- 8 -999 $ 9 -$ 999 10 999 $- 11 $ 999- 12 $ -999 13 999- $ 14 ($ 999) 15 (999 $)
The following example demonstrates the effects of different System.Globalization.NumberFormatInfo.CurrencyNegativePattern property values.
using System; using System.Globalization; class Test { public static void Main() { NumberFormatInfo nfi = new NumberFormatInfo(); decimal myMoney = -9999999999999.00m; for (int i = 0; i<=15; i++) { nfi.CurrencyNegativePattern = i; Console.WriteLine("pattern # {0}: {1}",i,myMoney.ToString("C",nfi)); } } }The output is
pattern # 0: ($9,999,999,999,999.00)
pattern # 1: -$9,999,999,999,999.00
pattern # 2: $-9,999,999,999,999.00
pattern # 3: $9,999,999,999,999.00-
pattern # 4: (9,999,999,999,999.00$)
pattern # 5: -9,999,999,999,999.00$
pattern # 6: 9,999,999,999,999.00-$
pattern # 7: 9,999,999,999,999.00$-
pattern # 8: -9,999,999,999,999.00 $
pattern # 9: -$ 9,999,999,999,999.00
pattern # 10: 9,999,999,999,999.00 $-
pattern # 11: $ 9,999,999,999,999.00-
pattern # 12: $ -9,999,999,999,999.00
pattern # 13: 9,999,999,999,999.00- $
pattern # 14: ($ 9,999,999,999,999.00)
pattern # 15: (9,999,999,999,999.00 $)
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int CurrencyPositivePattern { get; set; }
Gets or sets the format of positive currency values.
A Int32 between 0 and 3 inclusive, containing the format of positive currency values.
Exception Type Condition 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 following table describes the valid values for this property. "$" is used as the value for System.Globalization.NumberFormatInfo.CurrencySymbol, and 999 represents any numeric value.
The culture-invariant value for this property is 0.
Value Pattern 0 $999 1 999$ 2 $ 999 3 999 $
The following example demonstrates the effects of different System.Globalization.NumberFormatInfo.CurrencyPositivePattern property values.
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
pattern # 1: 9,999,999,999,999.00$
pattern # 2: $ 9,999,999,999,999.00
pattern # 3: 9,999,999,999,999.00 $
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string CurrencySymbol { get; set; }
Gets or sets the currency symbol.
A String containing the currency symbol.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is the Unicode currency symbol 0x00a4.
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public static NumberFormatInfo CurrentInfo { get; }
Gets a NumberFormatInfo instance containing formatting information for the current system culture.
A read-only NumberFormatInfo containing the settings for the current system culture.
This property is read-only.
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public static NumberFormatInfo InvariantInfo { get; }
Gets a NumberFormatInfo instance containing formatting information that is culture-independent and does not change.
A read-only NumberFormatInfo with property values which are universally supported. The property values of the returned NumberFormatInfo are not impacted by changes to the current culture.
This property is read-only.The following table lists the property values of the NumberFormatInfo returned by this property.
Property Default CurrencyDecimalDigits
2 CurrencyDecimalSeparator
"." CurrencyGroupSeparator
"," CurrencyGroupSizes
3 CurrencyNegativePattern
0 CurrencyPositivePattern
0 CurrencySymbol
0x00a4 NaNSymbol
"NaN" NegativeInfinitySymbol
"-Infinity" NegativeSign
"-" NumberDecimalDigits
2 NumberDecimalSeparator
"." NumberGroupSeparator
"," NumberGroupSizes
3 NumberNegativePattern
1 PercentDecimalDigits
2 PercentDecimalSeparator
"." PercentGroupSeparator
"," PercentGroupSizes
3 PercentNegativePattern
0 PercentPositivePattern
0 PercentSymbol
"%" PerMilleSymbol
"" PositiveInfinitySymbol
"Infinity" PositiveSign
"+"
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public bool IsReadOnly { get; }
Gets a value indicating whether the current instance is read-only.
true
if the current instance is read-only; otherwisefalse
.
This property is read-only.[Note: Attempting to perform an assignment to a property of a read-only NumberFormatInfo causes a InvalidOperationException.]
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string NaNSymbol { get; set; }
Gets or sets the symbol that represents NaN (Not-a-Number) floating-point values.
A String containing the symbol for NaN values.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is "NaN".[Note: For more information on NaN values, see Double or Single.]
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string NegativeInfinitySymbol { get; set; }
Gets or sets the symbol that represents negative infinity.
A String containing the symbol for negative infinity.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is "-Infinity".[Note: For more information on negative infinity, see Double or Single.]
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string NegativeSign { get; set; }
Gets or sets the symbol used to represent negative values.
A String containing the symbol that indicates a value is negative.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is "-".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int NumberDecimalDigits { get; set; }
Gets or sets the number of decimal places for numeric values.
A Int32 containing the number of decimal places for numeric values.
Exception Type Condition ArgumentOutOfRangeException The value specified for a set operation is less than 0 or greater than 99. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is 2.
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string NumberDecimalSeparator { get; set; }
Gets or sets the symbol used as the decimal separator for numeric values.
A String containing the decimal separator.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is ".".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string NumberGroupSeparator { get; set; }
Gets or sets the symbol used to separate groups of digits to the left of the decimal point for numeric values.
A String containing the group separator.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is ",".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int[] NumberGroupSizes { get; set; }
Gets or sets the number of digits in each group to the left of the decimal point for numeric values.
A Int32 array containing elements that define the number of digits in each group in numeric values.
Exception Type Condition ArgumentNullException The array specified for a set operation is a null reference. ArgumentOutOfRangeException One of the elements in the array specified for a set operation is not between 0 and 9. InvalidOperationException The current instance is read-only and a set operation was attempted.
All elements of the array except the last are required to be between 1 and 9, inclusive. The last element can be 0.The first element of the array defines the number of elements in the first group of digits located immediately to the left of the System.Globalization.NumberFormatInfo.NumberDecimalSeparator. Each subsequent element refers to the next group of digits located to the left of the previous group. If the last element of the array is not zero, any remaining digits are grouped based on the last element of the array. If the last element is zero, the remaining digits are not grouped.
The culture-invariant value for this property is an array with a single element containing the value 3.
The following example demonstrates the effects of different System.Globalization.NumberFormatInfo.NumberGroupSizes property values.
using System; using System.Globalization; class Test { public static void Main() { NumberFormatInfo nfi = new NumberFormatInfo(); decimal data = 9999999994444333221.00m; nfi.NumberGroupSizes = new int[] {1,2,3,4,0}; Console.WriteLine("{0}",data.ToString("N",nfi)); data = 123456789123456.78m; nfi.NumberGroupSizes = new int[] {3}; Console.WriteLine("{0}",data.ToString("N",nfi)); nfi.NumberGroupSizes = new int[] {3,0}; Console.WriteLine("{0}",data.ToString("N",nfi)); } }The output is
999999999,4444,333,22,1.00
123,456,789,123,456.78
123456789123,456.78
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int NumberNegativePattern { get; set; }
Gets or sets the format of negative values.
A Int32 between 0 and 4 inclusive that specifies the format of negative values.
Exception Type Condition ArgumentOutOfRangeException The value specified for a set operation is less than 0 or greater than 4. InvalidOperationException The current instance is read-only and a set operation was attempted.
The following table describes the valid values for this property. "-" is used as the value for System.Globalization.NumberFormatInfo.NegativeSign, and 999 represents any numeric value.
The culture-invariant value for this property is 1.
Value Pattern 0 (999) 1 -999 2 - 999 3 999- 4 999 -
The following example demonstrates the effects of different System.Globalization.NumberFormatInfo.NumberNegativePattern property values.
using System; using System.Globalization; class Test { public static void Main() { NumberFormatInfo nfi = new NumberFormatInfo(); Double data = -9999999999999.00; for (int i = 0; i<=4; i++) { nfi.NumberNegativePattern = i; Console.WriteLine("pattern # {0}: {1}",i,data.ToString("N",nfi)); } } }The output is
pattern # 0: (9,999,999,999,999.00)
pattern # 1: -9,999,999,999,999.00
pattern # 2: - 9,999,999,999,999.00
pattern # 3: 9,999,999,999,999.00-
pattern # 4: 9,999,999,999,999.00 -
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string PerMilleSymbol { get; set; }
Gets or sets the per mille symbol.
A String containing the per mille symbol.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is "".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int PercentDecimalDigits { get; set; }
Gets or sets the number of decimal places in percent values.
A Int32 containing the number of decimal places in percent values.
Exception Type Condition ArgumentOutOfRangeException The value specified for a set operation is less than 0 or greater than 99. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is 2.
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string PercentDecimalSeparator { get; set; }
Gets or sets the symbol used as the decimal separator in percent values.
A String containing the decimal separator used in percent values.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is ".".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string PercentGroupSeparator { get; set; }
Gets or sets the symbol used to separate groups of digits to the left of the decimal point in percent values.
A String containing the group separator symbol used in percent values.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is ",".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int[] PercentGroupSizes { get; set; }
Gets or sets the number of digits in each group to the left of the decimal point in percent values.
A Int32 array containing elements that define the number of digits in each group in percent values.
Exception Type Condition ArgumentNullException The array specified for a set operation is a null reference.
ArgumentException One of the elements in the array specified for a set operation is not between 0 and 9. -or-
The array contains an element, other than the last element, that is set to 0.
InvalidOperationException The current instance is read-only and a set operation was attempted.
All elements of the array except the last are required to be between 1 and 9, inclusive. The last element can be 0.The first element of the array defines the number of elements in the first group of digits located immediately to the left of the System.Globalization.NumberFormatInfo.PercentDecimalSeparator. Each subsequent element refers to the next group of digits located to the left of the previous group. If the last element of the array is not zero, any remaining digits are grouped based on the last element of the array. If the last element is zero, the remaining digits are not grouped.
The culture-invariant value for this property is an array with a single element containing the value 3.
The following example demonstrates the effects of different System.Globalization.NumberFormatInfo.PercentGroupSizes property values.
using System; using System.Globalization; class Test { public static void Main() { NumberFormatInfo nfi = new NumberFormatInfo(); decimal data = 9999999994444333221.00m; nfi.PercentGroupSizes = new int[] {1,2,3,4,0}; Console.WriteLine("{0}",data.ToString("P",nfi)); data = 123456789123456.78m; nfi.PercentGroupSizes = new int[] {3}; Console.WriteLine("{0}",data.ToString("P",nfi)); nfi.PercentGroupSizes = new int[] {3,0}; Console.WriteLine("{0}",data.ToString("P",nfi)); } }The output is
99999999944,4433,322,10,0.00 %
12,345,678,912,345,678.00 %
12345678912345,678.00 %
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int PercentNegativePattern { get; set; }
Gets or sets the format of negative percent values.
A Int32 between 0 and 2 inclusive that specifies the format of negative percent values.
Exception Type Condition ArgumentOutOfRangeException The value specified for a set operation is less than 0 or greater than 2. InvalidOperationException The current instance is read-only and a set operation was attempted.
The following table describes the valid values for this property. "%" is used as the value for System.Globalization.NumberFormatInfo.PercentSymbol, "-" is used as the value for System.Globalization.NumberFormatInfo.NegativeSign, and 999 represents any numeric value.
The culture-invariant value for this property is 0.
Value Pattern 0 -999 % 1 -999% 2 -%999
The following example demonstrates the effects of different System.Globalization.NumberFormatInfo.PercentNegativePattern property values.
using System; using System.Globalization; class Test { public static void Main() { NumberFormatInfo nfi = new NumberFormatInfo(); decimal data = -.9900m; for (int i = 0; i<=2 ; i++) { nfi.PercentNegativePattern = i; Console.WriteLine("pattern # {0}: {1}",i,data.ToString("P",nfi)); } } }The output is
pattern # 0: -99.00 %
pattern # 1: -99.00%
pattern # 2: -%99.00
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public int PercentPositivePattern { get; set; }
Gets or sets the format of positive percent values.
A Int32 between 0 and 2 inclusive that specifies the format of positive percent values.
Exception Type Condition ArgumentOutOfRangeException The value specified for a set operation is less than 0 or greater than 2. InvalidOperationException The current instance is read-only and a set operation was attempted.
The following table describes the valid values for this property. "%" is used as the value for System.Globalization.NumberFormatInfo.PercentSymbol, and 999 represents a numeric value.
The culture-invariant value for this property is 0.
Value Pattern 0 999 % 1 999% 2 %999
The following example demonstrates the effects of different System.Globalization.NumberFormatInfo.PercentPositivePattern property values.
using System; using System.Globalization; class Test { public static void Main() { NumberFormatInfo nfi = new NumberFormatInfo(); decimal data = .9900m; for (int i = 0; i<=2 ; i++) { nfi.PercentPositivePattern = i; Console.WriteLine("pattern # {0}: {1}",i,data.ToString("P",nfi)); } } }The output is
pattern # 0: 99.00 %
pattern # 1: 99.00%
pattern # 2: %99.00
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string PercentSymbol { get; set; }
Gets or sets the symbol that represents percentage values.
A String containing the percent symbol.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is "%".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string PositiveInfinitySymbol { get; set; }
Gets or sets the symbol that represents positive infinity.
A String containing the symbol for positive infinity.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is "Infinity".[Note: For more information on positive infinity, see Double or Single .]
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace
public string PositiveSign { get; set; }
Gets or sets the symbol used to represent positive values.
A String containing the symbol that indicates the value is positive.
Exception Type Condition ArgumentNullException The value specified for a set operation is a null reference InvalidOperationException The current instance is read-only and a set operation was attempted.
The culture-invariant value for this property is "+".
System.Globalization.NumberFormatInfo Class, System.Globalization Namespace