C Sharp (C#) - Interfaces
Given interfaces:
interface IAlpha { void DoWork(); }
interface IBeta { void DoWork(); }How can a class implement both interfaces and provide different implementations for each DoWork method?