G Guest Apr 8, 2004 #1 I was wondering if there is any way to unload an assembie after you loaded it? (using vb.net)
J Jon Skeet [C# MVP] Apr 8, 2004 #2 Monica said: I was wondering if there is any way to unload an assembie after you loaded it? (using vb.net) Click to expand... 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.
Monica said: I was wondering if there is any way to unload an assembie after you loaded it? (using vb.net) Click to expand... 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.
H Herfried K. Wagner [MVP] Apr 10, 2004 #3 * =?Utf-8?B?TW9uaWNh?= said: I was wondering if there is any way to unload an assembie after you loaded it? (using vb.net) Click to expand... In addition to the other reply: It's a sample in C#, but it's really nice: <URL:http://www.codeproject.com/csharp/livecodedotnet.asp>
* =?Utf-8?B?TW9uaWNh?= said: I was wondering if there is any way to unload an assembie after you loaded it? (using vb.net) Click to expand... In addition to the other reply: It's a sample in C#, but it's really nice: <URL:http://www.codeproject.com/csharp/livecodedotnet.asp>