Rectangle.Equals

Equals(object)

Tests whether obj is a Rectangle structure with the same location and size of this Rectangle structure.

public override bool Equals(object obj)
ParameterTypeDescription
objObjectThe Object to test.

Return Value

This method returns true if obj is a Rectangle structure and its X, Y, Width, and Height properties are equal to the corresponding properties of this Rectangle structure; otherwise, false.

See Also


Equals(Rectangle)

Tests whether other Rectangle structure has the same location and size of this Rectangle structure.

public bool Equals(Rectangle other)
ParameterTypeDescription
otherRectangleOther rectangle to test

Return Value

This method returns true if other Rectangle structure and its X, Y, Width, and Height properties are equal to the corresponding properties of this Rectangle structure; otherwise, false.

See Also