What is the difference between namespace and assembly?
An assembly is a physical grouping of logical units whereas namespace groups classes. Also, a namespace can span multiple assemblies as well. In .NET, a namespace and an assembly are both fundamental concepts, but they serve different purposes. Namespace: A namespace is a logical grouping mechanism for organizing and categorizing classes, interfaces, structures, enumerations, and … Read more