Guid.Equality(Guid, Guid) 연산자

정의

지정된 두 Guid 개체의 값이 같은지 여부를 나타냅니다.

public:
 static bool operator ==(Guid a, Guid b);
public static bool operator == (Guid a, Guid b);
static member ( = ) : Guid * Guid -> bool
Public Shared Operator == (a As Guid, b As Guid) As Boolean

매개 변수

a
Guid

비교할 첫 번째 개체입니다.

b
Guid

비교할 두 번째 개체입니다.

반환

ab가 같으면 true이고, 그렇지 않으면 false입니다.

예제

다음 예제에서는 연산자를 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

설명

이 연산자에 대 한 해당 메서드는 Guid.Equals(Object)

적용 대상