UIntPtr.Equality(UIntPtr, UIntPtr) 演算子
定義
public:
static bool operator ==(UIntPtr value1, UIntPtr value2);
public static bool operator == (UIntPtr value1, UIntPtr value2);
static member ( = ) : unativeint * unativeint -> bool
Public Shared Operator == (value1 As UIntPtr, value2 As UIntPtr) As Boolean
パラメーター
- value1
- UIntPtr
比較する最初のポインターまたはハンドル。The first pointer or handle to compare.
- value2
- UIntPtr
比較する 2 番目のポインターまたはハンドル。The second pointer or handle to compare.
戻り値
value1
が value2
に等しい場合は true
。それ以外の場合は false
。true
if value1
equals value2
; otherwise, false
.
注釈
この演算子の同等の方法は次のようになります。 UIntPtr.Equals(Object)The equivalent method for this operator is UIntPtr.Equals(Object)