NumberFormatInfo.NegativeSign 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置表示关联数字是负值的字符串。
public:
property System::String ^ NegativeSign { System::String ^ get(); void set(System::String ^ value); };
public string NegativeSign { get; set; }
member this.NegativeSign : string with get, set
Public Property NegativeSign As String
属性值
表示关联数字是负值的字符串。 InvariantInfo 默认为“-”。
例外
该属性设置为 null
。
设置了该属性,但 NumberFormatInfo 对象为只读。
示例
以下示例实例化一个表示固定区域性的读写 CultureInfo 对象,并将 OVERLINE 字符 (U+203E) 分配给其 NegativeSign 属性。 然后,它使用此 CultureInfo 对象设置负浮点数数组的格式。
using System;
using System.Globalization;
public class Example
{
public static void Main()
{
CultureInfo ci = CultureInfo.CreateSpecificCulture("");
ci.NumberFormat.NegativeSign = "\u203E";
double[] numbers = { -1.0, -16.3, -106.35 };
foreach (var number in numbers)
Console.WriteLine(number.ToString(ci));
}
}
// The example displays the following output:
// ‾1
// ‾16.3
// ‾106.35
Imports System.Globalization
Module Example
Public Sub Main()
Dim ci As CultureInfo = CultureInfo.CreateSpecificCulture("")
ci.NumberFormat.NegativeSign = ChrW(&h203E)
Dim numbers() As Double = { -1.0, -16.3, -106.35 }
For Each number In numbers
Console.WriteLine(number.ToString(ci))
Next
End Sub
End Module
' The example displays the following output:
' ‾1
' ‾16.3
' ‾106.35
注解
此属性用于格式设置和分析操作。 有关它在格式设置操作中的用法的详细信息,请参阅 标准数字格式字符串 和 自定义数值格式字符串 主题。