MethodToken.Inequality(MethodToken, MethodToken) Operador
Definição
Indica se duas estruturas MethodToken não são iguais.Indicates whether two MethodToken structures are not equal.
public:
static bool operator !=(System::Reflection::Emit::MethodToken a, System::Reflection::Emit::MethodToken b);
public static bool operator != (System.Reflection.Emit.MethodToken a, System.Reflection.Emit.MethodToken b);
static member op_Inequality : System.Reflection.Emit.MethodToken * System.Reflection.Emit.MethodToken -> bool
Public Shared Operator != (a As MethodToken, b As MethodToken) As Boolean
Parâmetros
O MethodToken para comparar com b.The MethodToken to compare to b.
O MethodToken para comparar com a.The MethodToken to compare to a.
Retornos
true se a não for igual a b; caso contrário, false.true if a is not equal to b; otherwise, false.
Comentários
O método equivalente para esse operador é MethodToken.Equals(MethodToken) .The equivalent method for this operator is MethodToken.Equals(MethodToken).