RuntimeMethodHandle.Inequality 演算子

定義

RuntimeMethodHandle の 2 つのインスタンスが等しくないかどうかを示します。

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

パラメーター

left
RuntimeMethodHandle

right と比較する RuntimeMethodHandle

right
RuntimeMethodHandle

left と比較する RuntimeMethodHandle

戻り値

Boolean

left の値が right の値に等しくない場合は true。それ以外の場合は false

注釈

この演算子の同等のメソッドは .RuntimeMethodHandle.Equals(RuntimeMethodHandle)

適用対象