When does the CLR load an assembly in a .NET process?

回眸只為那壹抹淺笑 提交于 2019-12-05 14:19:12

It's the JIT compiler that instructs the CLR to load an assembly once it has translated it to machine code which is done on demand and the exact time is not deterministic. As to the second question, once an assembly is loaded into the AppDomain, the only way to unload it is to destroy this AppDomain, there's no other way to unload an assembly.

It is loaded when you attempt to use a type from the assembly. When the program gets to executing a type that it doesn't know about it, the runtime goes and resolves the type, which then loads the assembly that contains that type.

Assemblies are loaded in various ways (Project references, direct references--both of these during compile-time (OK, apparently not)), but not by Using statements. They are to my knowledge never unloaded again.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!