Skip to content

Instantly share code, notes, and snippets.

@chrissie1
Created September 13, 2012 09:42
Show Gist options
  • Save chrissie1/3713250 to your computer and use it in GitHub Desktop.
Save chrissie1/3713250 to your computer and use it in GitHub Desktop.
Module Module1
Sub Main()
Dim s = New subclass
s.test()
Console.ReadLine()
End Sub
Public Interface IInterface
Sub test()
End Interface
Public MustInherit Class baseclass
Public Sub test()
Console.WriteLine("baseclass")
End Sub
End Class
Public Class subclass
Inherits baseclass
Implements IInterface
Public Sub test1() Implements IInterface.test
End Sub
End Class
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment