PostalAddress.Equals

Equals(PostalAddress)

public bool Equals(PostalAddress obj)

See Also


Equals(object)

Determines whether the specified Object is equal to the current Object.

public override bool Equals(object obj)
ParameterTypeDescription
objObjectThe Object to compare with the current Object.

Return Value

Returns a boolean indicating if the passed in object obj is Equal to this.

See Also


Equals(PostalAddress, PostalAddress)

Determines whether the specified object instances are considered equal.

public bool Equals(PostalAddress x, PostalAddress y)
ParameterTypeDescription
xPostalAddressThe first object to compare.
yPostalAddressThe second object to compare.

Return Value

true if the objects are considered equal; otherwise, false. If both objA and objB are null, the method returns true.

See Also