Exemplo n.º 1
0
 public static bool Equals(MutablePoint point, MutablePoint other) =>
 point.X.Equals(other.X) && point.Y.Equals(other.Y);
Exemplo n.º 2
0
 protected bool Equals(MutablePoint other)
 {
     return(X.Equals(other.X) && Y.Equals(other.Y));
 }