C Sharp (C#) - Interfaces
Examine the following code snippet:
What is the main issue with this code?
abstract class Appliance {
public abstract void TurnOn();
}
class Blender : Appliance {
public void TurnOn(int speed) { Console.WriteLine($"Blender started at speed {speed}"); }
}What is the main issue with this code?
