Assemblies and Namespace

后端 未结 5 948
别那么骄傲
别那么骄傲 2021-01-18 16:56

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

5条回答
  •  既然无缘
    2021-01-18 17:22

    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.

提交回复
热议问题