IntPtr.Equality(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 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
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.