vote up 1 vote down star

I have written a helper class which uses the Action - delegate as method parameter.
Like this:
public void SomeMethod(Action<T> methodToExecute, T argument);

According to the MSDN you can declare max. 4 arguments on an action delegate: Action<T1,T2,T3,T4>.

Now I'd like to call a method which needs 5! arguments. How could I do this?
The best solution would be something where I could use a dynamic number of method arguments.

Thanks

flag

1  
Perhaps you should think about grouping some of those arguments into a specific type. – Brian Rasmussen Sep 11 at 12:02
That's true. It is not very clever. But the situation is that I cannot introduce a new type or so. I have to offer this method accepting 5 or more params. – TomTom Sep 11 at 12:22

1 Answer

vote up 9 vote down check

Declare the action delegate you need, there's nothing magic about it:

public delegate void Action<T1, T2, T3, T4, T5>(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5);
link|flag
When .NET4 arrives the built-in Action and Func delegates will allow up to 16 parameters: msdn.microsoft.com/en-us/library/… – Luke Sep 11 at 12:05
1  
I think that a delegate or method with 16 parameters is a serious code smell... – Thomas Levesque Sep 11 at 12:11
I'm sorry but the following method signature does not compile: public static void Throws<TException, TFirst, TSecond, TThird, TFourth, TFifth>(Action<TFirst, TSecond, TThird, TFourth,TFifth> methodToExecute, TFirst first, TSecond second, TThird third, TFourth forth, TFifth fifth) where TException : System.Exception { /// some code } It tells me: "The non-generic type'System.Action' cannot be used with type arguments." – TomTom Sep 11 at 12:20
And did you declare the Action delegate with five generic types? – Lasse V. Karlsen Sep 11 at 12:23
The declaration was wrong. Typing is hard ;-) Now it is accepted and I can use it. Anyway, next time I need e.g. 6 params I have to declare another new delegate an so on. How could we make this more felxible? – TomTom Sep 11 at 12:49
show 2 more comments

Your Answer

Get an OpenID
or

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