Determines whether the specified object is a Size, value identical to this one.
Syntax

[C#]

virtual bool Equals(Object obj);
bool Equals(Size s, int epsilon);

[Visual Basic]

Overidable Function Equals(obj As Object) As Boolean
Function Equals(s As Size, epsilon As Integer) As Boolean
Params
Name Description
obj The object to compare.
s Size for comparison.
epsilon The amount by which coordinates can differ and still be equal.
return True if they are identical, otherwise false.
Notes

None.

Example

None.