Label.Equality(Label, Label) Operador

Definição

Indica se duas estruturas Label são iguais.Indicates whether two Label structures are equal.

public:
 static bool operator ==(System::Reflection::Emit::Label a, System::Reflection::Emit::Label b);
public static bool operator == (System.Reflection.Emit.Label a, System.Reflection.Emit.Label b);
static member ( = ) : System.Reflection.Emit.Label * System.Reflection.Emit.Label -> bool
Public Shared Operator == (a As Label, b As Label) As Boolean

Parâmetros

a
Label

O Label para comparar com b.The Label to compare to b.

b
Label

O Label para comparar com a.The Label to compare to a.

Retornos

Boolean

true se a for igual a b; caso contrário, false.true if a is equal to b; otherwise, false.

Comentários

O método equivalente para esse operador é Label.Equals(Label) .The equivalent method for this operator is Label.Equals(Label).

Aplica-se a