Delimiter.Equals Method
Definition
Namespace: ASNA.DataGate.Client.CopyData
Assembly: ASNA.QSys.DataGate.Client.dll
Determines whether the specified object is equal to the current object.
bool Equals(object obj)
Determines whether the specified object is equal to the current object.
Remarks
This method overrides the base method and performs a series of checks to determine equality:- If the provided object is a instance, it uses the equality operator (==) to compare the two instances.- If the provided object is a , it creates a new instance from the character and uses the equality operator to compare the two instances.- If the provided object is neither a nor a , it returns false.
bool Equals(object obj)
Parameters
| Type | Parameter name | Description |
|---|---|---|
| Object | obj | The object to compare with the current object. |
Returns
| Type | Description |
|---|---|
| Boolean | true if the specified object is equal to the current object; otherwise, false. |