A Alex S. Nov 25, 2003 #1 Hi, It's possible to load dynamically a Dll and later to unload it ? Thanks Alex
M Mattias Sjögren Nov 25, 2003 #2 It's possible to load dynamically a Dll and later to unload it ? Click to expand... You can't unload individual DLLs, only an entire AppDomain. Mattias
It's possible to load dynamically a Dll and later to unload it ? Click to expand... You can't unload individual DLLs, only an entire AppDomain. Mattias
A Alex S. Nov 25, 2003 #3 Hi, You can't unload individual DLLs, only an entire AppDomain. Click to expand... I mean a standard DLL (unmanaged code). Is the same answer ? Thanks Alex
Hi, You can't unload individual DLLs, only an entire AppDomain. Click to expand... I mean a standard DLL (unmanaged code). Is the same answer ? Thanks Alex
M Mattias Sjögren Nov 25, 2003 #4 Alex, I mean a standard DLL (unmanaged code). Is the same answer ? Click to expand... No, in that case you can call the FreeLibrary API. Mattias
Alex, I mean a standard DLL (unmanaged code). Is the same answer ? Click to expand... No, in that case you can call the FreeLibrary API. Mattias