本文整理汇总了VB.NET中System.Text.UTF32Encoding.Equals方法的典型用法代码示例。如果您正苦于以下问题:VB.NET UTF32Encoding.Equals方法的具体用法?VB.NET UTF32Encoding.Equals怎么用?VB.NET UTF32Encoding.Equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Text.UTF32Encoding
的用法示例。
在下文中一共展示了UTF32Encoding.Equals方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Main
' 导入命名空间
Imports System.Text
Public Class SamplesUTF32Encoding
Public Shared Sub Main()
' Create different instances of UTF32Encoding.
Dim u32 As New UTF32Encoding()
Dim u32tt As New UTF32Encoding(True, True)
Dim u32tf As New UTF32Encoding(True, False)
Dim u32ft As New UTF32Encoding(False, True)
Dim u32ff As New UTF32Encoding(False, False)
' Compare these instances with instances created using the ctor with three parameters.
CompareEncodings(u32, "u32 ")
CompareEncodings(u32tt, "u32tt")
CompareEncodings(u32tf, "u32tf")
CompareEncodings(u32ft, "u32ft")
CompareEncodings(u32ff, "u32ff")
End Sub
Public Shared Sub CompareEncodings(a As UTF32Encoding, name As String)
' Create different instances of UTF32Encoding using the ctor with three parameters.
Dim u32ttt As New UTF32Encoding(True, True, True)
Dim u32ttf As New UTF32Encoding(True, True, False)
Dim u32tft As New UTF32Encoding(True, False, True)
Dim u32tff As New UTF32Encoding(True, False, False)
Dim u32ftt As New UTF32Encoding(False, True, True)
Dim u32ftf As New UTF32Encoding(False, True, False)
Dim u32fft As New UTF32Encoding(False, False, True)
Dim u32fff As New UTF32Encoding(False, False, False)
' Compare the specified instance with each of the instances that were just created.
Console.WriteLine("{0} and u32ttt : {1}", name, a.Equals(u32ttt))
Console.WriteLine("{0} and u32ttf : {1}", name, a.Equals(u32ttf))
Console.WriteLine("{0} and u32tft : {1}", name, a.Equals(u32tft))
Console.WriteLine("{0} and u32tff : {1}", name, a.Equals(u32tff))
Console.WriteLine("{0} and u32ftt : {1}", name, a.Equals(u32ftt))
Console.WriteLine("{0} and u32ftf : {1}", name, a.Equals(u32ftf))
Console.WriteLine("{0} and u32fft : {1}", name, a.Equals(u32fft))
Console.WriteLine("{0} and u32fff : {1}", name, a.Equals(u32fff))
End Sub
End Class
输出:
u32 vs u32ttt : False u32 vs u32ttf : False u32 vs u32tft : False u32 vs u32tff : False u32 vs u32ftt : False u32 vs u32ftf : False u32 vs u32fft : False u32 vs u32fff : True u32tt vs u32ttt : False u32tt vs u32ttf : True u32tt vs u32tft : False u32tt vs u32tff : False u32tt vs u32ftt : False u32tt vs u32ftf : False u32tt vs u32fft : False u32tt vs u32fff : False u32tf vs u32ttt : False u32tf vs u32ttf : False u32tf vs u32tft : False u32tf vs u32tff : True u32tf vs u32ftt : False u32tf vs u32ftf : False u32tf vs u32fft : False u32tf vs u32fff : False u32ft vs u32ttt : False u32ft vs u32ttf : False u32ft vs u32tft : False u32ft vs u32tff : False u32ft vs u32ftt : False u32ft vs u32ftf : True u32ft vs u32fft : False u32ft vs u32fff : False u32ff vs u32ttt : False u32ff vs u32ttf : False u32ff vs u32tft : False u32ff vs u32tff : False u32ff vs u32ftt : False u32ff vs u32ftf : False u32ff vs u32fft : False u32ff vs u32fff : True