Exemplo n.º 1
0
    static void Main(string[] args)
    {
        MultipleInherit obj = new MultipleInherit();

        obj.print();
        obj.showAbs();
        obj.showNonAbs();

        Console.ReadLine();
    }
Exemplo n.º 2
0
    static void Main(string[] args)
    {
        MultipleInherit obj = new MultipleInherit();

        obj.changeVolume();
        obj.changeVolume();
        obj.changeStatus();
        obj.range();
        obj.insBattery();

        Console.ReadLine();
    }