Label.Equals Method
Definition
Indicates whether the current instance is equal to a specified object.
Overloads
Equals(Object) |
Checks if the given object is an instance of |
Equals(Label) |
Indicates whether the current instance is equal to the specified Label. |
Equals(Object)
Checks if the given object is an instance of Label
and is equal to this instance.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameters
- obj
- Object
The object to compare with this Label
instance.
Returns
true
if obj
is an instance of Label
and is equal to this object; otherwise, false
.
Applies to
Equals(Label)
Indicates whether the current instance is equal to the specified Label.
public:
virtual bool Equals(System::Reflection::Emit::Label obj);
public:
bool Equals(System::Reflection::Emit::Label obj);
public bool Equals (System.Reflection.Emit.Label obj);
override this.Equals : System.Reflection.Emit.Label -> bool
Public Function Equals (obj As Label) As Boolean
Parameters
Returns
true
if the value of obj
is equal to the value of the current instance; otherwise, false
.