Interface #2:
Public Interface ITest2
Function TestInterface2() As Boolean
End Interface
Interface #1:
Public Interface ITest
Inherits VBWebTest.ITest2
ReadOnly Property TestProperty() As Object
Sub TestNoReturnFunction()
Function TestReturnFunction() As Integer
End Interface
In Interface #1 how do I implement the TestInterface2 function of the inheritied inteface. I miss C# automatic addition of the stubs, and my drop down boxes don't show ITest2, so I can't just pick the method and have it put it. I tried just matching the signature but that told me I need to use the Shadows keyword (and I understand why...it's obvious), but I can't seem to figure out the right syntax to do this and haven't had much help with MSDN getting me past this point.
Thanks!
Public Interface ITest2
Function TestInterface2() As Boolean
End Interface
Interface #1:
Public Interface ITest
Inherits VBWebTest.ITest2
ReadOnly Property TestProperty() As Object
Sub TestNoReturnFunction()
Function TestReturnFunction() As Integer
End Interface
In Interface #1 how do I implement the TestInterface2 function of the inheritied inteface. I miss C# automatic addition of the stubs, and my drop down boxes don't show ITest2, so I can't just pick the method and have it put it. I tried just matching the signature but that told me I need to use the Shadows keyword (and I understand why...it's obvious), but I can't seem to figure out the right syntax to do this and haven't had much help with MSDN getting me past this point.
Thanks!