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.
我正在尝试在我的 C# 应用程序中加载和卸载程序集,但我无法卸载程序集,也无法动态替换已卸载的程序集。
您无法卸载程序集。一旦它在那里,JIT 就不可能分解它编译的所有代码。
但是,您可以将其加载到单独的 AppDomain 中,并在完成后拆除该 AppDomain。