Rect.Equals Method (Rect)
|
Specifies whether this object contains the same members as the specified Object.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic bool Equals(
Rect obj
)
Public Function Equals (
obj As Rect
) As Boolean
public:
virtual bool Equals(
Rect obj
) sealed
abstract Equals :
obj : Rect -> bool
override Equals :
obj : Rect -> bool
Parameters
- obj
- Type: OpenCvSharp.Rect
The Object to test.
Return Value
Type:
BooleanThis method returns true if obj is the same type as this object and has the same members as this object.
Implements
IEquatable<T>.Equals(T)
See Also