本文整理汇总了VB.NET中System.Guid.Empty字段的典型用法代码示例。如果您正苦于以下问题:VB.NET Guid.Empty字段的具体用法?VB.NET Guid.Empty怎么用?VB.NET Guid.Empty使用的例子?那么恭喜您, 这里精选的字段代码示例或许可以为您提供帮助。您也可以进一步了解该字段所在类System.Guid
的用法示例。
在下文中一共展示了Guid.Empty字段的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Example
Module Example
Public Sub Main()
' Create a GUID and determine whether it consists of all zeros.
Dim guid1 As Guid = Guid.NewGuid
Console.WriteLine(guid1)
Console.WriteLine("Empty: {0}", guid1 = Guid.Empty)
Console.WriteLine()
' Create a GUID with all zeros and compare it to Empty.
Dim bytes(15) As Byte
Dim guid2 As New Guid(bytes)
Console.WriteLine(guid2)
Console.WriteLine("Empty: {0}", guid2 = Guid.Empty)
End Sub
End Module
输出:
11c43ee8-b9d3-4e51-b73f-bd9dda66e29c Empty: False 00000000-0000-0000-0000-000000000000 Empty: True