System.Drawing.Point.operator C# (CSharp) Method

operator() public static method

Compares two objects. The result specifies whether the values of the and properties of the two objects are equal.

public static operator ( ) : bool
return bool
        public static bool operator ==(Point left, Point right) => left.X == right.X && left.Y == right.Y;

Same methods

Point::operator ( ) : Point
Point::operator ( ) : System.Drawing.Point