C Sharp (C#) - Polymorphism and Abstract Classes
Examine the code below and identify the issue:
abstract class Appliance {
public abstract void TurnOn();
}
class Blender : Appliance {
public void TurnOn() {
System.Console.WriteLine("Blender is on");
}
}