I'm loading plugin dynamically through the reflection assembly.
I have implemented an interface which must be implemented in each plugin.
I want to be able to access the events raised by those plugins and implemented in the interface. I cant use the addHandler method because i write AddHandler myvar.myevent ,AddressOf myMethod. It says myvar has not an event called "myevent". myvar is declared as object.
How can I do, I can't add reference to each plugin class(or it wont be useful to implement a plugin model as i have to reference them in my project) ?