Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
Public Class BaseClass |
|
' Declare an event. |
|
Event Ev1() |
|
End Class |
|
Class DerivedClass |
|
Inherits BaseClass |
|
Sub TestEvents() Handles MyBase.Ev1 |
|
' Add code to handle this event. |
|
End Sub |
|
End Class |
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.