CRaPI - Correct Robust and Perfect API

Point2D Equality Operator 

Checks if two Point2D are equal

public static bool operator ==(
   Point2D pP1,
   Point2D pP2
);

Parameters

pP1
Point 1
pP2
Point 2

Return Value

true if the points are equal

Remarks

Two points are equal if (P1.X == P2.X) and (P1.Y == P2.Y)

See Also

Point2D Class | TeamYaffa.CRaPI.Utility Namespace