for organizational purposes I'm setting the namespace in every class manually.
like if I have an project called myProject namespace is myProject I change it to mySolution.myProject
then changing nested directories the same way
namespace myProject.Folder1
{
///
}
to
namespace mySolution.myProject.Folder1
{
///
}
this way multiple projects can be parts of one namespace,
Is this a valid way to do this?