I have a WebApplication project called WebApp and I have a Library Project called LibProj where I define a namespace like
Namespace LibProj
Public Class Employee
Public Property Name As String
End Class
End Namespace
Now I add the reference to WebApp and try to use the namespace with
Imports LibProj
but this does not work. I have to add
Imports LibProj.LibProj
In all the examples I studied it always works with Imports LibProj instead but I just cannot see what is wrong with my procedure. Could anyone help me here?