B Benny Raymond Nov 29, 2005 #1 Are there any good tutorials on how to unload a dynamically loaded assembly?
N Nicholas Paldino [.NET/C# MVP] Nov 29, 2005 #2 Benny, Short of unloading the app domain that loaded the assembly, there is no way to do this. Your only option is to unload the app domain that it is in. Hope this helps.
Benny, Short of unloading the app domain that loaded the assembly, there is no way to do this. Your only option is to unload the app domain that it is in. Hope this helps.
P Paul Gielens Nov 29, 2005 #3 Benny, Yes there are and it basically takes this amount of work: AppDomain.Unload(MyAssembly); See this excellent article http://www.devsource.com/article2/0,1895,1790388,00.asp Roy Osherove wrote a series of articles on plug-in support namely Make Your App Support Plugins http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/pluginframework.asp and Make Your App Support Plugins 2 - Dynamic Search http://msdn.microsoft.com/asp.net/u...ibrary/en-us/dnaspp/html/searchforplugins.asp Best regards, Paul Gielens Visit my blog @ http://weblogs.asp.net/pgielens/
Benny, Yes there are and it basically takes this amount of work: AppDomain.Unload(MyAssembly); See this excellent article http://www.devsource.com/article2/0,1895,1790388,00.asp Roy Osherove wrote a series of articles on plug-in support namely Make Your App Support Plugins http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/pluginframework.asp and Make Your App Support Plugins 2 - Dynamic Search http://msdn.microsoft.com/asp.net/u...ibrary/en-us/dnaspp/html/searchforplugins.asp Best regards, Paul Gielens Visit my blog @ http://weblogs.asp.net/pgielens/