在C# 中,使用Assembly.LoadFrom() 載入的組件需要顯式卸載,以釋放顯式卸載,以釋放記憶體並釋放資源由程式集持有。
卸載組件時,可以使用 AppDomain.Unload 方法。此方法卸載指定的 AppDomain,進而卸載該 AppDomain 中載入的所有組件。例如:
// Create a new AppDomain and load the assembly AppDomain dom = AppDomain.CreateDomain("some"); AssemblyName assemblyName = new AssemblyName(); assemblyName.CodeBase = pathToAssembly; Assembly assembly = dom.Load(assemblyName); // Get the types from the assembly Type[] types = assembly.GetTypes(); // Unload the AppDomain AppDomain.Unload(dom);
單獨呼叫 assem = null 並不能保證程式集會立即卸載。垃圾收集器仍然需要運作來回收未引用的資源。您無法在 C# 中明確呼叫垃圾收集器。
但是,您可以透過呼叫 GC.Collect 方法強制垃圾收集器來更快運作。此方法觸發垃圾收集週期並嘗試回收所有無法存取的物件。雖然 GC.Collect 在某些情況下可用於提高效能,但通常不建議過度依賴它,因為它可能會導致應用程式暫停。
以上是如何在 C# 中卸載透過 Assembly.LoadFrom() 載入的組件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!