I have virtually dozens of mini-apps (all of which are exe's) all being launched from the menu/toolbar of one main app.
Once I convert tha mini-apps into methods stored in various DLL's, Is there a way that I can load the method into memory from the main app when needed, and then remove it from memory when I'm done with it

Running methods stored in a DLL
J Hallam
What you could do is create a new AppDomain, load the types into that AppDomain and then unload the AppDomain when you are finished with it.
lkshikoh