I have created an AppDomain and loaded an assembly into this AppDomain. The assembly is very simple - a class that implements an interface and inherits from an abstaract class.
In the base class I have a thread that is watching over a buffer (base class member) and when the buffer is filled with method names (strings) it should invoke these methods.
I need a way to invoke the method by the given name without instanciating a new class object, I need to get the running instance of the class and invoke its methods - any way to accomplish this?
Thanks
In the base class I have a thread that is watching over a buffer (base class member) and when the buffer is filled with method names (strings) it should invoke these methods.
I need a way to invoke the method by the given name without instanciating a new class object, I need to get the running instance of the class and invoke its methods - any way to accomplish this?
Thanks