#179 – What Is an Assembly?
December 13, 2010 3 Comments
As a .NET language, C# compiles code into assemblies. An assembly is a reusable piece of code, packaged into either an .exe or .dll file. It contains IL (Intermediate Language) code that the CLR (Common Language Runtime) will compile into machine code at runtime.
An assembly contains a manifest, which defines high-level attributes of the assembly including its name, version, copyright information and an optional strong name that uniquely identifies it.
Assemblies also contain metadata, representing a complete description of all of the contained types. The metadata includes a description of each method and property of each type implemented in the assembly, along with information about the parameters and return type. An assembly also includes a list of other assemblies that it references.
An assembly is typically packaged as a single .exe or .dll file, but can also be spread across more than one file.