Has the Internal Structure of DLLs Changed in Recent Years?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

It seems that, in general, project References really only require the DLL
path. In recent versions of Visual Studio (e.g. 2003/2005) that support .NET,
has the internal format/structure of DLLs changed to support assembly
information etc.? Od are DLLs the same as they always have been for years? It
just seems that a lot of information is gleaned from only the DLLs as project
references etc.
 
Od are DLLs the same as they always have been for years? It
just seems that a lot of information is gleaned from only the DLLs as project
references etc.

Yes a managed module is significantly different from an unmanaged DLL,
even though they are based on the same PE format. Managed modules
contain metadata to be self describing.


Mattias
 
Back
Top