System.Globalization.NumberFormatInfo.PercentPositivePattern Property

Gets or sets the format pattern for positive percent values.

Syntax

public int PercentPositivePattern { get; set; }

Value

A int between 0 and 2 inclusive that specifies the format of positive percent values.

Exceptions

TypeReason
ArgumentOutOfRangeExceptionThe value specified for a set operation is less than 0 or greater than 2.
InvalidOperationExceptionThe current instance is read-only and a set operation was attempted.

Remarks

The NumberFormatInfo.PercentPositivePattern property is used with the "P" standard format string to define pattern of positive percentage 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.PercentSymbol and n is a number.

0

n %

1

n%

2

%n

3

% n

Example

The following example demonstrates the effects of different NumberFormatInfo.PercentPositivePattern property values.

C# Example

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

Requirements

Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0