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

link|improve this question

Does your code work if you pass only some defined parameters, for example if you define Func to accept an integer and a string? I think your code is almost ok, not sure if Func could be defined to accept params... – Davide Piras Jan 24 '11 at 10:25
Yes it does work if I define the parameters. However it does not accept something like Func<params object[], object> B. – Christian Jan 24 '11 at 10:27
1  
Is b a fixed signature? Do you know what type B returns and takes? If not then you can't use any Func<..> signature. You'll have to use Delegate and dynamic invoke. msdn.microsoft.com/en-us/library/… – dfowler Jan 24 '11 at 10:31
B is completely unknown. It will return something unknown and it takes an unknown number of parameters of unknown type. I'll have a look at that article, thanks! – Christian Jan 24 '11 at 10:32
dfowler is correct. That is the very solution that the framework uses, for example in the ISynchronizeInvoke.Invoke method. msdn.microsoft.com/en-us/library/… – Ani Jan 24 '11 at 10:34
feedback

4 Answers

up vote 3 down vote accepted
void Main()
{
    Func<int> m1=()=>1;
    Console.WriteLine(A(m1));

    Func<int,int> m2=i=>i;
    Console.WriteLine(A(m2,55));
}

object A(Delegate B,params object[] args)
{

    return B.Method.Invoke(B.Target,args);
}

...goodbye type-safety

link|improve this answer
This does the job. Thank you! Well you're right, type-safety is gone but in my case there is no other way of doing it. – Christian Jan 24 '11 at 10:39
feedback

Func<object> is a delegate for a method that takes no arguments and returns object. If you change it to Func<object,object>, it will take an argument and return object:

public object A(Func<object, object> B, params object[] args)
{
    object x = B(args);

    return x;
}
link|improve this answer
The problem is that B may take more than 1 argument. – Christian Jan 24 '11 at 10:34
@Christian: since an array is also an object you can pass pretty much anything to a Func<object, object>. Then it is up to the called method to figure out what it actually got. So in your case with a params object[] args, you can pass args to a Func<object, object>. – Fredrik Mörk Jan 24 '11 at 10:44
Ahh I see! You're right, that will work. Thanks! – Christian Jan 24 '11 at 11:02
feedback

This should do it:

public object A(Func<object[], object> B, params object[] args) 
{     
     object x = B(args);     
     return x; 
}
link|improve this answer
This would work if all my B's take an object array as parameter. I could use this, but it would be better if the B functions just stay as they are. – Christian Jan 24 '11 at 10:33
feedback

You should have a code like this one:

public object A(Func<object[], object> B, params object[] args)
{
    object x = B(args);

    return x;
}

You're missing that the Func overload needs to accept your object array of arguments.

Anyway, if you need this method "A" to accept parameterless functions, you should create a paremeterless function parameter overload of "A".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.