I am trying to write the following: I would like to write a method "A" which takes as parameter another method "B" as well as an unknown number of parameters for this method B. (params object[] args). Now, inside method A i would like to make a call to B with the parameters args. B will now return an object which I would like A to return as well.
This all sounds a bit strange, therefore I will add some example code:
public object A(Func<object> B, params object[] args)
{
object x = B.Method.Invoke(args);
return x;
}
The problem is, that Func does not work like that. Does anyone know a way of doing this?
Regards, Christian
ISynchronizeInvoke.Invokemethod. msdn.microsoft.com/en-us/library/… – Ani Jan 24 '11 at 10:34