public object Clone() { var output = new PointInfo(); output.ID = this.ID; return output; }
public Point() { Info = new PointInfo(); }