IntPtr.Inequality(IntPtr, IntPtr) Operator

Definition

Determines whether two specified instances of IntPtr are not equal.

public:
 static bool operator !=(IntPtr value1, IntPtr value2);
public:
 static bool operator !=(IntPtr value1, IntPtr value2) = System::Numerics::IEqualityOperators<IntPtr, IntPtr, bool>::op_Inequality;
public static bool operator != (IntPtr value1, IntPtr value2);
static member op_Inequality : 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 does not equal value2; otherwise, false.

Implements

Remarks

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

Applies to