What is Managed Module in .NET and how is it different from Assemblies? Is a PE file (eg. test.dll) a managed module or an assembly? How does assembly/managed module correspond to physical files on disk?
|
A Managed module is generally understood to refer to a module that only contains IL code, with no direct machine code. A module is housed in a normal PE file. An assembly is a set of 1 or more modules, with one designated as the 'head' (will look up the exact term[1]). A module on its own isnt individually much use though - the assembly is the atomic unit. For example, you could have an multui-module assembly with 2 DLLs and an EXE. Multi module assemblies are quite rare though. The Don Box book Esssential .NET, the Richter CLR via C# gives good coverage of the topic. For complete details, the Serge Lidin .NET 2.0 IL Assembler book and the CLI standard are more complete. [1] According to http://www.programmersheaven.com/2/FAQ-DOTNET-DOTNET-Assembly-Explained
To answer the actual questions:-
It is a subset - a DLL can be a master module with no child modules -- and thus be an assembly too
Definitely a module. If it also has a manifest and no child modules, it's also an assembly
|
||||
|
|
|
A module contains IL and many of them are linked together to create an assembly, which is usually housed in a PE like a .exe or a .dll. A PE can contain native (non managed) code as well. |
|||
|
|
|
||||
|
|