There are several reasons for a method not to have a method body:
NotSupportedException should be thrown. Sub DoSomething() End Sub Function DoSomething() As String End Function
Sub DoSomething()
' Not implemented because of reason
End Sub
Function DoSomething() As String
Throw New NotSupportedException
End Function
The following methods are ignored:
Overridable or MustOverride methods, MustOverride method,