C Sharp (C#) - Inheritance
What will be the output of this C# code?
class Base { public virtual void Show() { Console.WriteLine("Base Show"); } } class Derived : Base { public override void Show() { Console.WriteLine("Derived Show"); } } class Program { static void Main() { Base b = new Derived(); b.Show(); } }