A solution not sure to unload an assembly is to create a second
appdomain who list the loaded assemblies. When you want to unload an
assembly, you remove this assembly of the list ( stored in the second
appdomain ), then you delete the first appdomain, and you create the
first appdomain with all assemblies listed. This solution is dangerous
when you have links between assemblies, and you lost your execution
context. But it is the only solution, to unload One assembly.
Clément
> Hi,
> Assemblies cannot be unloaded. You have to load them in a separate app
[quoted text clipped - 9 lines]
>
> Javier