C Sharp (C#) - Polymorphism and Abstract Classes
Identify the error in this C# code related to runtime polymorphism:
class Base {
public override void Show() {
Console.WriteLine("Base Show");
}
}
class Derived : Base {
public override void Show() {
Console.WriteLine("Derived Show");
}
}