C Sharp (C#) - Interfaces
Find the error in this code snippet:
interface ITest { void Run(); }
class Test : ITest { public void Run() { Console.WriteLine("Running"); } }
class Program { static void Main() { ITest t = new Test(); t.Run; } }