You have a class named Glass that inherits from a base class named Window. The Window
class includes a protected method named break().
How should you call the Glass class implementation of the breakO method?
A.
Glass.break()
B.
Window.break()
C.
Me.break()
D.
MyBase.break()
I’m thinking this should be A. Glass.break()
inheritance calls on protected items seem to work that way unless I read this wrong
https://msdn.microsoft.com/en-us/library/bcd5672a.aspx
this question is related to Visual Basic. MyBase is related to VB. And all questions with Dim and Sub at Visual Basic too.