52.

interface IAnimal {
    void Walk();
}

interface IHuman {
    void Walk();
}

class Man : IAnimal, IHuman{
    //How to inherit the method Walk from IHuman
}

How do you implement the Walk() method from IHuman Interface explicitly?

No description found.