コード例 #1
0
 private static void printCarDetails(Car car)
 {
     Console.WriteLine("Car's details :: {0}", car.FormatMe());
     Console.ReadLine();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: andy-coding/Repos
 private static void printCarDetails(Car car)
 {
     Console.WriteLine("Here are the car's details: {0}",
                       car.FormatMe());
 }
コード例 #3
0
 private static void printCarDetails(Car car)
 {
     Console.WriteLine("Here are the Car's details: {0}",car.FormatMe());
 }