GCHandle.Equals 메서드

정의

오버로드

Equals(Object)

지정된 GCHandle 개체가 현재 GCHandle 개체와 같은지 여부를 확인합니다.

Equals(GCHandle)

현재 instance 동일한 형식의 다른 instance 같은지 여부를 나타냅니다.

Equals(Object)

Source:
GCHandle.cs
Source:
GCHandle.cs
Source:
GCHandle.cs

지정된 GCHandle 개체가 현재 GCHandle 개체와 같은지 여부를 확인합니다.

public:
 override bool Equals(System::Object ^ o);
public override bool Equals (object o);
public override bool Equals (object? o);
public override readonly bool Equals (object? o);
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean

매개 변수

o
Object

현재 GCHandle 개체와 비교할 GCHandle 개체입니다.

반환

지정한 GCHandle 개체가 현재 GCHandle 개체와 같으면 true이고, 그렇지 않으면 false입니다.

설명

GCHandle 개체는 동일한 메모리 핸들을 가리키면 동일합니다.

적용 대상

Equals(GCHandle)

Source:
GCHandle.cs
Source:
GCHandle.cs
Source:
GCHandle.cs

현재 instance 동일한 형식의 다른 instance 같은지 여부를 나타냅니다.

public:
 virtual bool Equals(System::Runtime::InteropServices::GCHandle other);
public bool Equals (System.Runtime.InteropServices.GCHandle other);
public readonly bool Equals (System.Runtime.InteropServices.GCHandle other);
override this.Equals : System.Runtime.InteropServices.GCHandle -> bool
Public Function Equals (other As GCHandle) As Boolean

매개 변수

other
GCHandle

이 instance 비교할 instance.

반환

true현재 instance 다른 instance 같으면 이고, false그렇지 않으면 입니다.

구현

적용 대상