PE header for each NetModule assembly

As you know, we can store network modules in assemblies instead of putting them in different files and linking them in Assembly. But since each managed module has its own PE header, CLR header, metadata, I wonder when they are embedded in one assembly, these headers become one complete header that describes each managed module in the assembly, or will they still be split?

enter image description here

+3


source to share


1 answer


.netmodules must be linked with al.exe

in order to create a useful assembly. It is up to the linker to generate the final metadata in the assembly. Only.



+1


source







All Articles