Here is a simplified example:
namespace MyNS.Proj.InternalNS {
internal class InternalClass1 {...}
}
I would like to make InternalNS as the part in MyNS.Proj invisible to outside since all the classes with the namespace are internal or private. Not sure if this is possible?