Ejemplo n.º 1
0
        static void main()
        {
            Car C = new Car();

            C.wheel  = 4;
            C.engine = "v6";
            C.DisplayParts();
        }
Ejemplo n.º 2
0
        static void Main()
        {
            Car c = new Car();

            c.wheel = 4;
            c.motor = "V6";
            c.DisplayParts();
        }
Ejemplo n.º 3
0
        static void Main()
        {
            Car c = new Car();

            c.wheel = 4;
            c.DisplayParts();
            Console.Read();
        }
Ejemplo n.º 4
0
        static void Main()
        {
            Car car = new Car();

            car.wheel = 10;
            car.motor = " v10";
            car.DisplayParts();
        }
Ejemplo n.º 5
0
        static void Main()
        {
            Car c = new Car();

            c.Wheel = 4;
            c.Motar = "v6";
            c.DisplayParts();
            Console.Read();
        }