InterviewSolution
Saved Bookmarks
| 1. |
Can You Prevent A Class From Overriding? |
|
Answer» YES. You can prevent a class from overriding in C# by USING the sealed keyword; and in VB by using NotInheritable keyword. Yes. You can prevent a class from overriding in C# by using the sealed keyword; and in VB by using NotInheritable keyword. |
|