C Sharp (C#) - Interfaces
Find the problem in this code snippet:
interface ITest { void Run() => Console.WriteLine("Run"); } class Test : ITest { public void Run(int x) => Console.WriteLine(x); }
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions