Home »

What’s an abstract class?

Question ListCategory: C#.NETWhat’s an abstract class?
ethanbrown author asked 9 years ago
1 Answers
milleranthony7 author answered 8 years ago

A class that cannot be instantiated. An abstract class is a class that must be inherited and have the methods overridden. An abstract class is essentially a blueprint for a class without any implementation.

Please login or Register to Submit Answer