I have this code:
And it does not compile. I get an 'end of statement expected' error message every time on the line where class2 inherits. If I comment out everything after class2 then the error goes away. If I define an interface and class2 implements instead of inherits I get the same error.
I am using VB 2005.NET Express Edition if that matters.
Code:
Public Class class1 End Class Public Class class2 Inherits class1 End Class
I am using VB 2005.NET Express Edition if that matters.

)
Comment