Load and unload assembly
-
I need to successfully load and unload assemblies from my vb.net project in real time. Can anyone recommend a tutorial on this process? Thanks!
-
I need to successfully load and unload assemblies from my vb.net project in real time. Can anyone recommend a tutorial on this process? Thanks!
I suggest you google around; look for "AppDomain", as you can't unload assemblies, all you can unload is an AppDomain, so you will have to load assemblies in a new AppDomain, then later unload that AppDomain. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
-
I suggest you google around; look for "AppDomain", as you can't unload assemblies, all you can unload is an AppDomain, so you will have to load assemblies in a new AppDomain, then later unload that AppDomain. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
Oh,sorry, yes I understand that this occurs through appdomains. And I've googled and binged my head off on this, but I have yet to find a good solid tutorial on the mechanisms of the process. I was hoping someone here might have a good book or link that would help me. Thanks
-
Oh,sorry, yes I understand that this occurs through appdomains. And I've googled and binged my head off on this, but I have yet to find a good solid tutorial on the mechanisms of the process. I was hoping someone here might have a good book or link that would help me. Thanks
I don't have any around here, however I would suggest you look at some of these[^]. That may be a little hard though with your head off. :laugh:
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
-
I don't have any around here, however I would suggest you look at some of these[^]. That may be a little hard though with your head off. :laugh:
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
Thanks Luc!