ArrayWithOffset.Equality(ArrayWithOffset, ArrayWithOffset) Operador
Definição
Determina se dois objetos ArrayWithOffset especificados têm o mesmo valor.Determines whether two specified ArrayWithOffset objects have the same value.
public:
static bool operator ==(System::Runtime::InteropServices::ArrayWithOffset a, System::Runtime::InteropServices::ArrayWithOffset b);
public static bool operator == (System.Runtime.InteropServices.ArrayWithOffset a, System.Runtime.InteropServices.ArrayWithOffset b);
static member ( = ) : System.Runtime.InteropServices.ArrayWithOffset * System.Runtime.InteropServices.ArrayWithOffset -> bool
Public Shared Operator == (a As ArrayWithOffset, b As ArrayWithOffset) As Boolean
Parâmetros
Um objeto ArrayWithOffset a ser comparado com o parâmetro b.An ArrayWithOffset object to compare with the b parameter.
Um objeto ArrayWithOffset a ser comparado com o parâmetro a.An ArrayWithOffset object to compare with the a parameter.
Retornos
true se o valor de a for o mesmo que o valor de b; caso contrário, false.true if the value of a is the same as the value of b; otherwise, false.
Comentários
O método equivalente para esse operador é ArrayWithOffset.Equals(ArrayWithOffset) .The equivalent method for this operator is ArrayWithOffset.Equals(ArrayWithOffset).