Пример #1
0
        public void Main(string[] args)
        {
            Car myCar = new Car("Ford", "Kuga", 5, 2015, "White");
            Car yourCar = new Car("Porsche", "911", 3, 1999, "Red");

            Console.WriteLine("My car is a " + myCar.Make + " " + myCar.Model + ", " + myCar.Year + " in " + myCar.Color);
            Console.WriteLine("It has " + myCar.NumberOfDoors + " doors.");
            myCar.StartEngine();
            myCar.StopEngine();
            Console.WriteLine("******************************");
            Console.WriteLine("You have a " + yourCar.Make + " " + yourCar.Model);

            Console.ReadLine();
        }