Guid.Equality(Guid, Guid) 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 두 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
비교할 두 번째 개체입니다.
반환
a
과 b
가 같으면 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)
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET