C Sharp (C#) - Polymorphism and Abstract Classes
Find the problem in this code that prevents runtime polymorphism:
class Base { public void Display() { Console.WriteLine("Base"); } } class Derived : Base { public override void Display() { Console.WriteLine("Derived"); } }