I am using some .NET assemblies another developer wrote for use from an older VB6 application. They are only used for some of our customers so I am using the Assembly.LoadFrom(file) method and invoking the methods. I am worried about unloading / releasing the objects after I make the calls. Do I need to do something explicitly, or will the garbage collector take care of it automatically?
Share
You can’t unload an assembly.
(The closest you can come to that is loading it into an
AppDomainthat you then unload.)