Software Development Network>> VS Express Editions>> How to unLoad Dll
May i can unload Dll as like C++ or not, if i can then what will be the function for unloading.
Thanks.
DLLs are loaded and unloaded by the CLR automatically, and any attempt to circumvent this will lead to system instability. I suppose you can P/Invoke to FreeLibrary to do this.
How to unLoad Dll
GKim
DLLs are loaded and unloaded by the CLR automatically, and any attempt to circumvent this will lead to system instability. I suppose you can P/Invoke to FreeLibrary to do this.