예제 #1
0
        static void Correto()
        {
            Car car = new Car("Azul", 2021, 2.0, 5, 4);

            car.ConfigureCar();

            Motorcycle motorcycle = new Motorcycle("Branco", 2023, 250);

            motorcycle.ConfigureMotorcycle();

            Console.ReadLine();
        }