IntPtr.Equality(IntPtr, IntPtr) Operator

Definition

Determines whether two specified instances of IntPtr are equal.

public:
 static bool operator ==(IntPtr value1, IntPtr value2);
public:
 static bool operator ==(IntPtr value1, IntPtr value2) = System::Numerics::IEqualityOperators<IntPtr, IntPtr, bool>::op_Equality;
public static bool operator == (IntPtr value1, IntPtr value2);
static member ( = ) : nativeint * nativeint -> bool
Public Shared Operator == (value1 As IntPtr, value2 As IntPtr) As Boolean

Parameters

value1
IntPtr

nativeint

The first signed integer to compare.

value2
IntPtr

nativeint

The second signed integer to compare.

Returns

true if value1 equals value2; otherwise, false.

Implements

Remarks

The equivalent method for this operator is IntPtr.Equals(Object)

Applies to