Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     // added some crap
     Console.WriteLine("hello!");
     Bilar bilar = new Bilar("family car", "blue", 4, 1);
     Console.WriteLine("Type of car: " + bilar.Type +
         "\nColor of the car: " + bilar.Color +
         "\nNumber of whells: " + bilar.NumberOfWheel);
     Bilar Lastbilar = new Bilar("Truck", "Green", 12, 1);
     Console.WriteLine("\nType of car: " + Lastbilar.Type +
         "\nColor of the car: " + Lastbilar.Color +
         "\nNumber of whells: " + Lastbilar.NumberOfWheel);
     bilar.TalkAboutYourCar();
     Lastbilar.TalkAboutYourCar();
 }