GCHandle.Inequality(GCHandle, GCHandle) 演算子

定義

GCHandle の 2 つのオブジェクトが等しくないかどうかを示す値を返します。

public:
 static bool operator !=(System::Runtime::InteropServices::GCHandle a, System::Runtime::InteropServices::GCHandle b);
public static bool operator != (System.Runtime.InteropServices.GCHandle a, System.Runtime.InteropServices.GCHandle b);
static member op_Inequality : System.Runtime.InteropServices.GCHandle * System.Runtime.InteropServices.GCHandle -> bool
Public Shared Operator != (a As GCHandle, b As GCHandle) As Boolean

パラメーター

a
GCHandle

b パラメーターと比較する GCHandle オブジェクト。

b
GCHandle

a パラメーターと比較する GCHandle オブジェクト。

戻り値

a パラメーターと b パラメーターが等しくない場合は true。それ以外の場合は false

注釈

この演算子の同等のメソッドは です GCHandle.Equals

適用対象