What Is An Abstract Class And What Is It's Purpose?
Answers
Answered by
1
A Class which doesn't provide complete implementation is defined as an abstract class. Abstract classes enforce abstraction.
Answered by
1
Answer:
The purpose of an abstract class is to define some common behavior that can be inherited by multiple subclasses, without implementing the entire class. In C#, the abstract keyword designates both an abstract class and a pure virtual method.
Similar questions