I need to create an Expression<Action>
that represents calling a method on a class.
As input, I have a string that describes the assembly and class name (standard fully-qualified class name) and another string that defines the method to invoke.
The class/method to be invoked are NOT actually available in the code where the Expression has to be created, so I can't just write ()=>MyClass.Invoke();
-- I don't have MyClass
's assembly as a reference.