You have created an abstract class and you want to force its sub classes to implement a particular method.
What should you do to enforce this in C#?
Options
- Declare the class as virtual
- Declare the class as abstract
- Add the virtual keyword to the method
- Add the abstract keyword to the method