| Author: Sriram 04 May 2008 | Member Level: Gold Points : 2 |
once your MSIL is Compiled u got assembly information
|
| Author: venkat kamal 04 May 2008 | Member Level: Gold Points : 2 |
Assembly is the small deployable unit that contains the information about the implementation of classes,structures and interfaces
|
| Author: Vijaykumar Patil 05 May 2008 | Member Level: Gold Points : 2 |
An assembly is the primary building block of a .NET application and can take the form of a dynamic link library (DLL) or executable file (EXE). An assembly is a collection of functionality that is built, versioned, and deployed as a single implementation unit.
|
| Author: Deepthi 05 May 2008 | Member Level: Silver Points : 2 |
Assembly is a self describing collection of code, resources, and metadata (data about data, example, name, size, version of a file is metadata about that file). An Assembly is a complied and versioned collection of code and metadata that forms an atomic functional unit. Assemblies take the form of a dynamic link library (.dll) file or executable program file (.exe) but they differ as they contain the information found in a type library and the information about everything else needed to use an application or component. All .NET programs are constructed from these Assemblies. Assemblies are made of two parts: manifest, contains information about what is contained within the assembly and modules, internal files of IL code which are ready to run. When programming, we don't directly deal with assemblies as the CLR and the .NET framework takes care of that behind the scenes
|