K
Kalim Julia
Public Class RichBigDaddy
Public Sub PlayPolo()
Trace.WriteLine("RichBigDaddy:
layPolo")
End Sub
End Class
Public Class TrustFundSnob
Inherits RichBigDaddy
Public Sub PlayPolo()
Trace.WriteLine("TrustFundSnob:
layPolo")
End Sub
End Class=================================================If I want the
output be :RichBigDaddy:
layPoloTrustFundSnob:
layPoloAny sub declaration
method should be added ? (like shadows, overrides, overloads, etc)I've tried
to use them all, but the output is only
:RichBigDaddy:
layPoloORTrustFundSnob:
layPolo
Public Sub PlayPolo()
Trace.WriteLine("RichBigDaddy:

End Sub
End Class
Public Class TrustFundSnob
Inherits RichBigDaddy
Public Sub PlayPolo()
Trace.WriteLine("TrustFundSnob:

End Sub
End Class=================================================If I want the
output be :RichBigDaddy:


method should be added ? (like shadows, overrides, overloads, etc)I've tried
to use them all, but the output is only
:RichBigDaddy:

