public static void Race(IRemoteControlCar car)
 {
     throw new NotImplementedException($"Please implement the (static) TestTrack.Race() method");
 }
Exemplo n.º 2
0
 public static void Race(IRemoteControlCar car) => car.Drive();
Exemplo n.º 3
0
Arquivo: Example.cs Projeto: taiyab/v3
 public static decimal Race(IRemoteControlCar car)
 {
     car.Drive();
     return(car.DistanceTravelled);
 }