InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Abstract Class in C#? |
|
Answer» In C#, an ABSTRACT CLASS is a class where an object cannot be instantiated. Denoted by keyword abstract, this class can be inherited. However, it must INCLUDE at least ONE of the methods. |
|