public bool ValueEquals(MyPoint point) { //System.Diagnostics.Debug.WriteLine($"{this.ToString()} ValueEquals {point}, {this.X == point.X && this.Y == point.Y}"); return(this.X == point.X && this.Y == point.Y); }
public MyPoint(MyPoint p) { X = p.X; Y = p.Y; }