예제 #1
0
 private static void printCarDetails(Car car)
 {
     Console.WriteLine("Car's details :: {0}", car.FormatMe());
     Console.ReadLine();
 }
예제 #2
0
 private static void printCarDetails(Car car)
 {
     Console.WriteLine("Here are the car's details: {0}",
                       car.FormatMe());
 }
 private static void printCarDetails(Car car)
 {
     Console.WriteLine("Here are the Car's details: {0}",car.FormatMe());
 }