Unload DLL Module from Owner Process

  • Thread starter Thread starter Jan Jeitziner
  • Start date Start date
J

Jan Jeitziner

Hi folk,

is there a possibility to unload a (DLL-) Module from its owner Process
within a VB.NET Application?
With other words, how can I unload at Runtime a DLL, which my
Application has loaded, from the memory.

I'm very thankful for your Help!

Jan
 
* Jan Jeitziner said:
is there a possibility to unload a (DLL-) Module from its owner Process
within a VB.NET Application?
With other words, how can I unload at Runtime a DLL, which my
Application has loaded, from the memory.

If you load it into a separate app domain, you can unload it by
unloading the app domain.
 
Back
Top