Beispiel #1
0
        ///print out the route
        public override string ToString()
        {
            string s = "From Stop " + Start.ToString()
                       + " to " + Dest.ToString()
                       + ", Distance is " + Weight.ToString();

            return(s);
        }
Beispiel #2
0
 public override string ToString()
 {
     return(Dest.ToString());
 }