How to unload a C# addin dll without exiting Microstation. I have tried mdl unload and the dll does not unload.
IS there any way to unload the program without exiting Microstation?
Unknown said:Is there any way to unload the program without exiting Microstation?
Unfortunately not. It's a characteristic of dynamic garbage-collection languages (e.g. C#, Java). A DLL cannot be reliably and deterministically removed from the host executable address space without the possibility of leaving some orphan memory. If you wish that it were otherwise, then I (and many others) would agree with you.
Related MSDN publications:
Regards, Jon Summers LA Solutions