What code do you have so far?
Public Class BaseClass
Public Property Test As String
Sub New()
End Sub
Public Sub Hi()
MsgBox("hi")
End Sub
End Class
Public Class Inherited
Inherits BaseClass
Public Property Test2 As String
Get
Return MyBase.Test
End Get
Set(value As String)
MyBase.Test = value
End Set
End Property
Sub sayhi()
MyBase.Hi()
End Sub
End Class
“If you want something you've never had, you need to do something you've never done.”
Don't forget to mark
helpful posts and answers
! Answer an interesting question? Write a
new article
about it! My Articles
|
*This post does not reflect the opinion of Microsoft, or its employees.