private classes inside namespaces
- by blacklion
Is there a way to restrict access to a class from outside a namespace? What I want is to have a class that is only accessible to other classes inside the same namespace without having to put the namespace in it's own assembly.
Is there a reason this is not possible in C#?