RuntimeMethodHandle.Inequality(RuntimeMethodHandle, RuntimeMethodHandle) Operador
Definição
Indica se duas instâncias de RuntimeMethodHandle não são iguais.Indicates whether two instances of RuntimeMethodHandle are not equal.
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
Parâmetros
- left
- RuntimeMethodHandle
Uma RuntimeMethodHandle a ser comparada com right.A RuntimeMethodHandle to compare to right.
- right
- RuntimeMethodHandle
Uma RuntimeMethodHandle a ser comparada com left.A RuntimeMethodHandle to compare to left.
Retornos
true se o valor de left não for igual ao valor de right; caso contrário, false.true if the value of left is unequal to the value of right; otherwise, false.
Comentários
O método equivalente para esse operador é RuntimeMethodHandle.Equals(RuntimeMethodHandle) .The equivalent method for this operator is RuntimeMethodHandle.Equals(RuntimeMethodHandle).