C Sharp (C#) - Interfaces
What is the error in the following code?
interface IRunner { void Execute(); }
class Runner : IRunner { public void IRunner.Execute() { Console.WriteLine("Running"); } }