InterviewSolution
Saved Bookmarks
| 1. |
What Is Sealed Modifiers? |
|
Answer» Sealed MODIFIERS are the ACCESS modifiers where it cannot be inherited by the methods. Sealed modifiers can also be applied to PROPERTIES, events and methods. This modifier cannot be applied to STATIC MEMBERS. Sealed modifiers are the access modifiers where it cannot be inherited by the methods. Sealed modifiers can also be applied to properties, events and methods. This modifier cannot be applied to static members. |
|