Answer the question
In order to leave comments, you need to log in
Dynamic type generation or wrappers around interfaces in PCL?
For my needs, I'm trying to make a proxy class generator around interfaces. That is, suppose there is an interface
interface ITest
{
void DoTest(int arg1);
}
class Helper
{
protected object proxyCaller(MethodInfo executingMethod, params object[] args) { ... }
}
ITest obj = GetInstanceFor<ITest>();
obj->DoTest(1);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question