|  | PointInequality Operator  | 
 
            Compares two Point objects. The result specifies whether the values of the X or Y properties of the two Point objects are unequal.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
 Syntax
Syntaxpublic static bool operator !=(
	Point lhs,
	Point rhs
)
Public Shared Operator <> ( 
	lhs As Point,
	rhs As Point
) As Boolean
public:
static bool operator !=(
	Point lhs, 
	Point rhs
)
static let inline (<>)
        lhs : Point * 
        rhs : Point  : boolParameters
- lhs
- Type: OpenCvSharpPoint
 A Point to compare.
- rhs
- Type: OpenCvSharpPoint
 A Point to compare.
Return Value
Type: 
BooleanThis operator returns true if the values of either the X properties or the Y properties of left and right differ; otherwise, false.
 See Also
See Also