Skip to content

Instantly share code, notes, and snippets.

@AnthonyDGreen
Created January 29, 2019 10:16
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save AnthonyDGreen/39634fd98a0cacc093719ab62d7ab1e6 to your computer and use it in GitHub Desktop.
Interface IFoo
Sub Bar()
Sub Baz()
End Interface
Class Foo
Implements IFoo
Private Sub Bar() Implements IFoo.Bar
Exit Sub
End Sub
Private Sub IFoo_Baz() Implements IFoo.Baz
Exit Sub
End Sub
End Class
Class FooDerived
Inherits Foo
Implements IFoo
Public Sub Bar() Implements IFoo.Bar
Exit Sub
End Sub
Public Sub Baz()
' Does something unrelated to what an IFoo.Baz would do.
End Sub
End Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment