Assemblies and Namespace

.net, c#

Solution

No, you can have multiple namespaces within an assembly. In VS terms, you can think of an assembly as a project. Each project within a solution, gets compiled into it's own assembly. Within an assembly though, you can have multiple namespaces.

Problem

Does everything in a single namespace compile into its own assembly?

Original source

Related problems