Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

NumberFormatInfo::NegativeSign Property

 

Gets or sets the string that denotes that the associated number is negative.

Namespace:   System.Globalization
Assembly:  mscorlib (in mscorlib.dll)

public:
property String^ NegativeSign {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The string that denotes that the associated number is negative. The default for InvariantInfo is "-".

Exception Condition
ArgumentNullException

The property is being set to null.

InvalidOperationException

The property is being set and the NumberFormatInfo object is read-only.

This property is used in both formatting and parsing operations. For more information on its use in formatting operations, see the Standard Numeric Format Strings and Custom Numeric Format Strings topics.

The following example instantiates a read-write CultureInfo object that represents the invariant culture and assigns the OVERLINE character (U+203E) to its NegativeSign property. It then uses this CultureInfo object to format an array of negative floating-point numbers.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: