Home »

When do you absolutely have to declare a class as abstract?

Question ListCategory: C#.NETWhen do you absolutely have to declare a class as abstract?
adamemliy16 author asked 8 years ago
1 Answers
jessica537 author answered 8 years ago

1. When the class itself is inherited from an abstract class, but not all base abstract methods have been overridden.

2. When at least one of the methods in the class is abstract.

Please login or Register to Submit Answer