public bool Equals(Punt other) { if ((other.X == this.X) && (other.Y == this.Y)) { return(true); } else { return(false); } }
public Knoop(int id, Punt mpunt) { KnoopID = id; Punt = mpunt; }