Hi,
This problem has been resolved. The solution:
1. Remove ProjectA.dll reference from ProjectC.
2. On ProjectC properties page, add back the ProjectA reference.
Thanks.
Antonio
"Antonio" <(E-Mail Removed)> wrote in message
news:ABD12441-57E6-42A5-B423-(E-Mail Removed)...
> Hi,
>
> I have an abstract ClassA in ProjectA:
> Public MustInherit Class ClassA
> :
> End Class
>
> I inherit ClassA on ClassB from ProjectB:
> Public Class ClassB
> Inherits ProjectA.ClassA
>
> :
> End Class
>
> I instantiate ClassB in ProjectC as follow:
>
> Imports ProjectB
>
> Public Class ClassC
> Dim objB As New ClassB
>
> objB. ' <-- Members in ClassA not appearing.
> :
> :
> End Class
>
> Anybody knows what is happening here? Thanks.
>
> Regards,
> Antonio
|