C Sharp (C#) - Polymorphism and Abstract Classes
Identify the issue in this code snippet:
abstract class Processor {
public abstract void Process();
}
class TaskProcessor : Processor {
public void Process() {
System.Console.WriteLine("Processing task");
}
}