IHasEquivalence<T>.IsEquivalentTo method

Determines whether the object is equivalent to the specified object.

public bool IsEquivalentTo(T? other)
parameter description
other The specified object.

Return Value

True if the object is equivalent to the specified object.

Remarks

As with equality (Object.Equals), equivalence should be reflexive, symmetric, transitive, and consistent (as long as the objects in question are not modified). An object should never be equivalent to null.

See Also