C Sharp (C#) - Interfaces
What is the issue with this code?
interface ITest { void Run() => Console.WriteLine("Start"); } class Test : ITest { public void Run() { Console.WriteLine("End"); } }