There are no such questions as silly questions .;) You can do it, but do yourself a favor and keep your namespaces the same as the folder hierarchy, or you can quickly put a bird's nest. For example, if the default namespace of the project is MyProject and the folder is Dc, these classes should be in
Namespace MyProject.Dc
Edit: just wrap classes to reflect the structure of your folder, for example:
Namespace MyProject.Ds
Module MyModule
Sub Main()
'do stuff here
End Sub
End Module
End Namespace
source
share