Showing posts with label difference between namespace and assembly. Show all posts
Showing posts with label difference between namespace and assembly. Show all posts

17 June 2011

Difference between namespace and assembly

Difference between namespace and assembly

Assembly
An Assembly is a logical unit of functionality that runs under the control of the .NET common language runtime (CLR). An assembly physically exists as a .dll file or as an .exe file.

An Assembly can contains one or many namespaces

Namespace
Namespaces are a way of grouping type names and reducing the chance of name collisions.

Implementing OAuth validation in a Web API

 I mplementing OAuth validation in a Web API Implementing OAuth validation in a Web API using C# typically involves several key steps to sec...