views:

35

answers:

1

Hi all,

Could someone explain me in depth how the system loads an .NET assembly. I mean :

  • what dlls are used : I supposed first mscoree.dll, next mscorwks.dll and mscorjit.dll
  • what methods in these dlls ?

Thanks a lot !

+3  A: 

Look in "CLR via C#" book by Jeffrey Richter, chapter "CLR Hosting"

Orsol