[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.Equals

Equals Method

Equals(object)

Compares this reference with another object.

If obj is a Reference, this method compares it by using Equals(Reference). If obj is null or is not a Reference, this method returns false.

Declaration
public override bool Equals(object obj)
Public Overrides Function Equals(obj As Object) As Boolean
Parameters
Type Name Description
object obj

The object to compare with this reference. Can be null.

Returns
Type Description
bool

true if obj is a Reference that is equal to this reference; otherwise, false.

Overrides

Equals(Reference)

Equality comparison.

Declaration
public bool Equals(Reference other)
Public Function Equals(other As Reference) As Boolean
Parameters
Type Name Description
Reference other

Another reference.

Returns
Type Description
bool

true if other is equal to this reference; otherwise, false.

Implements