C Sharp (C#) - Inheritance
Identify the error in this code:
class Base {
public virtual void Show() {}
}
class Derived : Base {
public void Show() {}
}