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