M
M O J O
Hi,
I've setup my project with this namespace "MyApp.Data".
I have about 40 classes in this project.
Now I create a new class with this code....
Namespace MyApp
Namespace Settings
Public Class Database
' bla. bla. bla.
End Class
End Namespace
End Namespace
Now suddently other projects can only see classes in the "MyApp.Settings"
namespace.
Where did all the other classes go to?
How com setting namespace in one class messes up the namespace for the
entire project?
Do I really need to set up namespace "MyApp.Data" in all 40 classes?
Thanks!!
M O J O
I've setup my project with this namespace "MyApp.Data".
I have about 40 classes in this project.
Now I create a new class with this code....
Namespace MyApp
Namespace Settings
Public Class Database
' bla. bla. bla.
End Class
End Namespace
End Namespace
Now suddently other projects can only see classes in the "MyApp.Settings"
namespace.
Where did all the other classes go to?
How com setting namespace in one class messes up the namespace for the
entire project?
Do I really need to set up namespace "MyApp.Data" in all 40 classes?
Thanks!!
M O J O