IntPtr.Inequality(IntPtr, IntPtr) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.