C Sharp (C#) - Interfaces
You have two interfaces:
How can a class
interface IWalk { void Walk(); }
interface ITalk { void Talk(); }How can a class
Human implement both interfaces correctly?