C Sharp (C#) - Interfaces
What will be the output of this code?
interface IExample { void Show() => Console.WriteLine("Default"); }
class Test : IExample { }
var t = new Test();
t.Show();