Exemplo n.º 1
0
 public int CompareTo(Train other) //Sort list by number
 {
     if (other == null)
     {
         return(1);   // All instances are greater than null
     }
     return(TrainUnit.CompareTo(other.TrainUnit));
 }