After loading a reference to an assembly with something like:
import clr
clr.AddRferenceToFileAndPath(r'C:\foo.dll')
How can I unload the assembly again?
Why would anyone ever want to do this? Because I'm recompiling foo.dll
and want to reload it, but the compiler is giving me a fuss, since IronPython is allready accessing foo.dll
.