NumberFormatInfo::PercentDecimalSeparator Property
Gets or sets the string to use as the decimal separator in percent values.
Assembly: mscorlib (in mscorlib.dll)
public: property String^ PercentDecimalSeparator { String^ get(); void set(String^ value); }
Property Value
Type: System::String^The string to use as the decimal separator in percent values. 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. |
| ArgumentException | The property is being set to an empty string. |
The PercentDecimalSeparator property is used with the "P" standard format string to define the symbol that separates integral from fractional digits. For more information, see Standard Numeric Format Strings.
The following example demonstrates the effect of changing the PercentDecimalSeparator property.
using namespace System; using namespace System::Globalization; int main() { // Gets a NumberFormatInfo associated with the en-US culture. CultureInfo^ MyCI = gcnew CultureInfo( "en-US",false ); NumberFormatInfo^ nfi = MyCI->NumberFormat; // Displays a value with the default separator (S"."). Double myInt = 0.1234; Console::WriteLine( myInt.ToString( "P", nfi ) ); // Displays the same value with a blank as the separator. nfi->PercentDecimalSeparator = " "; Console::WriteLine( myInt.ToString( "P", nfi ) ); } /* This code produces the following output. 12.34 % 12 34 % */
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