Guid.Empty 필드

정의

모든 값이 0인 Guid 구조체의 읽기 전용 인스턴스입니다.

public: static initonly Guid Empty;
public static readonly Guid Empty;
 staticval mutable Empty : Guid
Public Shared ReadOnly Empty As Guid 

필드 값

설명

GUID를 필드 값과 비교하여 GUID가 Guid.Empty 0이 아닌지 여부를 확인할 수 있습니다. 다음 예제에서는 연산자를 Equality 사용하여 두 GUID 값을 와 Guid.Empty 비교하여 0으로만 구성되는지 여부를 확인합니다.

// Create a GUID and determine whether it consists of all zeros.
Guid guid1 = Guid.NewGuid();
Console.WriteLine(guid1);
Console.WriteLine($"Empty: {guid1 == Guid.Empty}\n");

// Create a GUID with all zeros and compare it to Empty.
var bytes = new Byte[16];
var guid2 = new Guid(bytes);
Console.WriteLine(guid2);
Console.WriteLine($"Empty: {guid2 == Guid.Empty}");

// The example displays output like the following:
//       11c43ee8-b9d3-4e51-b73f-bd9dda66e29c
//       Empty: False
//
//       00000000-0000-0000-0000-000000000000
//       Empty: True
open System

// Create a GUID and determine whether it consists of all zeros.
let guid1 = Guid.NewGuid()
printfn $"{guid1}"
printfn $"Empty: {guid1 = Guid.Empty}\n"

// Create a GUID with all zeros and compare it to Empty.
let bytes = Array.zeroCreate<byte> 16
let guid2 = Guid bytes
printfn $"{guid2}"
printfn $"Empty: {guid2 = Guid.Empty}"

// The example displays output like the following:
//       11c43ee8-b9d3-4e51-b73f-bd9dda66e29c
//       Empty: False
//
//       00000000-0000-0000-0000-000000000000
//       Empty: True
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
' The example displays output like the following:
'       11c43ee8-b9d3-4e51-b73f-bd9dda66e29c
'       Empty: False
'       
'       00000000-0000-0000-0000-000000000000
'       Empty: True

적용 대상