static void Main(string[] args)
    {
        MultipleInherit obj = new MultipleInherit();

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

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

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

        Console.ReadLine();
    }