I'm trying to write some kind of plugin framework... It looks something like this:
Host Application (Windows Form Application) loads plugins into separate AppDomains (each plugin into own AppDomain).
How to set a method from plugin as eventhandler for MenuItem Click event (MenuStrip is on the main form of host application) and prevent loading plugin assembly into the main AppDomain?
Host Application (Windows Form Application) loads plugins into separate AppDomains (each plugin into own AppDomain).
How to set a method from plugin as eventhandler for MenuItem Click event (MenuStrip is on the main form of host application) and prevent loading plugin assembly into the main AppDomain?
Comment