本文整理汇总了VB.NET中System.Globalization.NumberFormatInfo.NumberNegativePattern属性的典型用法代码示例。如果您正苦于以下问题:VB.NET NumberFormatInfo.NumberNegativePattern属性的具体用法?VB.NET NumberFormatInfo.NumberNegativePattern怎么用?VB.NET NumberFormatInfo.NumberNegativePattern使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Globalization.NumberFormatInfo
的用法示例。
在下文中一共展示了NumberFormatInfo.NumberNegativePattern属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Example
' 导入命名空间
Imports System.Globalization
Module Example
Public Sub Main()
' Creates a new NumberFormatinfo.
Dim nfi As New NumberFormatInfo()
' Define a negative value.
Dim value As Int64 = -1234
' Display the value with default formatting.
Console.WriteLine("{0,-20} {1,-10}", "Default:",
value.ToString("N", nfi))
' Display the value with other patterns.
For i As Integer = 0 To 4
nfi.NumberNegativePattern = i
Console.WriteLine("{0,-20} {1,-10}",
String.Format("Pattern {0}:",
nfi.NumberNegativePattern),
value.ToString("N", nfi))
Next
End Sub
End Module
输出:
Default: -1,234.00 Pattern 0: (1,234.00) Pattern 1: -1,234.00 Pattern 2: - 1,234.00 Pattern 3: 1,234.00- Pattern 4: 1,234.00 -