开发者

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

  1. Is a .NET assembly loaded by the CLR when a class from the assembly is referenced?

Or

  1. When a class which declares the using namespace from the assembly is loaded?

Also having loaded an assem开发者_运维知识库bly, does it ever unloads the assembly if it is not used for a long time?


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜