Exemple #1
0
 public static Point operator -(in Point lh, in Point rh) => new Point(lh.X - rh.X, lh.Y - rh.Y);
Exemple #2
0
 public static POINT operator-(in POINT lh, in POINT rh) => new POINT(lh.X - rh.X, lh.Y - rh.Y);