C Sharp (C#) - Inheritance
Identify the error in this C# code snippet:
class Animal {
private void Speak() {
System.Console.WriteLine("Animal speaks");
}
}
class Dog : Animal {
public void Speak() {
System.Console.WriteLine("Dog barks");
}
}