Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如我们中的一些人所知,java 类是由ClassLoader. 但是,我不知道 .NET 使用什么来加载类。它有什么用?我已经通过谷歌进行了研究,但仍然一无所获。
ClassLoader
在 .NET 中,程序集是部署的基本单元。实际加载程序集的技术称为 Fusion。有关这方面的更多详细信息,请阅读 .NET Fusion Workshop。每个程序集都有自己的类加载器来从该程序集中加载类型。托管公共语言运行时可能也很有趣。