A
AA
I am building in VS2003 a .EXE application and the namespace of this
Application is:
Namespace MyCompany
Public Class MainClass
Public Shared Sub Main()
End Sub
End Class
End Namespace
And I have too a DLL assembly with the same Namespace
My problem is: When I change my project (.EXE) namespace with other name, I
can see the DLL namespace
... MyCompany.MyDllClass <-- OK
But if the Namespace of my project is equal to the DLL namespace I cant see
the DLL Method
.... MyCompany.MyDllClass <-- Type 'MyCompany.MyDllClass' is not defined
What that happen?
Thanks a lot
Application is:
Namespace MyCompany
Public Class MainClass
Public Shared Sub Main()
End Sub
End Class
End Namespace
And I have too a DLL assembly with the same Namespace
My problem is: When I change my project (.EXE) namespace with other name, I
can see the DLL namespace
... MyCompany.MyDllClass <-- OK
But if the Namespace of my project is equal to the DLL namespace I cant see
the DLL Method
.... MyCompany.MyDllClass <-- Type 'MyCompany.MyDllClass' is not defined
What that happen?
Thanks a lot