C Sharp (C#) - Interfaces
Identify the error in the following code snippet implementing explicit interface method:
interface IAlpha { void Run(); }
class Beta : IAlpha {
public void IAlpha.Run() {
Console.WriteLine("Running");
}
}