RuntimeMethodHandle.Equality(RuntimeMethodHandle, RuntimeMethodHandle) Operator

Definition

Indicates whether two instances of RuntimeMethodHandle are equal.

public:
 static bool operator ==(RuntimeMethodHandle left, RuntimeMethodHandle right);
public static bool operator == (RuntimeMethodHandle left, RuntimeMethodHandle right);
static member ( = ) : RuntimeMethodHandle * RuntimeMethodHandle -> bool
Public Shared Operator == (left As RuntimeMethodHandle, right As RuntimeMethodHandle) As Boolean

Parameters

left
RuntimeMethodHandle

A RuntimeMethodHandle to compare to right.

right
RuntimeMethodHandle

A RuntimeMethodHandle to compare to left.

Returns

true if the value of left is equal to the value of right; otherwise, false.

Remarks

The equivalent method for this operator is RuntimeMethodHandle.Equals(RuntimeMethodHandle).

Applies to