Unload Assemlies

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I was wondering if there is any way to unload an assembie after you loaded it? (using vb.net)
 
Monica said:
I was wondering if there is any way to unload an assembie after you
loaded it? (using vb.net)

No - you can only unload whole AppDomains. If you need to unload an
individual assembly, you'll need to put it in a separate AppDomain.
That introduces whole other cans of worms when using it, however.
 
Back
Top