Which one is better in, say, parameter type in a method (not related to LINQ). Apparently Func is better since it's simpler, more descriptive, and if everyone is using this everything will become compatible (good). However I notice Microsoft uses its own delegate at some libraries, for example event handlers. So, what are the advantages and drawbacks of either of them? when should I use it?

Edits:

  • Apparently Func<> was only available in 3.5, so this can possible be the main reason that I saw non-Func delegates. Any other reason to not use Func? (example: this is from .NET4)

  • The same question also applies for Action<>

link|improve this question

78% accept rate
Which libraries? probably those libraries is old and developed prior to .Net 3.5(esp for EventHandler) – Jani Dec 16 '10 at 7:45
mostly in event handlers, but I also saw it in other libraries, I'll try to recall – Louis Rhys Dec 16 '10 at 7:48
Func<> did not exist until .net 3.5. Most event handler prior to that. – J-16 SDiZ Dec 16 '10 at 7:57
@Louis Rhys: Reflector .NET 'renders' all delegates (incl Func) as delegate. Perhaps you saw it there. – leppie Dec 16 '10 at 7:58
hmm that makes sense. any other reasons to not use Func<>? – Louis Rhys Dec 16 '10 at 7:58
show 4 more comments
feedback

5 Answers

up vote 4 down vote accepted

Func<> is useful when it's very clear what they're used for, and the number of inputs is small.

When the number of inputs is larger, or there could be some ambiguity over the intent - then using a delegate with named arguments makes things clearer.

link|improve this answer
if the number of inputs is larger, isn't it harder to remember them if it is called LotsOfInputFunction than, Func<int, bool, string, Type1, Type2>. And if the intent is not clear I can clarify it in variable name or parameter name instead, right? – Louis Rhys Dec 16 '10 at 7:52
3  
I meant intent of each parameter. For instance: Func<int, int, string string> -- just looking at this it's hard/impossible to infer what it's for. In addition, adding a parameter can mean refactoring a significant amount of code, and potentially breaking interfaces. – Will Hughes Dec 16 '10 at 9:24
+1 for the comment about cascading changes – Grokodile Nov 12 '11 at 15:15
feedback

They are for all purposes the same, except when the method has an Expression parameter. Those need to be defined as a 'lambda' and not delegate. This would be very problematic when dealing with IQueryable and getting the IEnumerable invoked/resolved instead (eg LINQ2SQL).

link|improve this answer
feedback

Func<> and Action<> are preferable if they are actually appropriate in your case. Runtime creates instances of every type used in your program, and if you use Func once it means that the instance of type was created. In case of custom delegate things go in different way and new types will be created even though they are essentially similar to existing.

However sometimes custom delegates make code clearer.

link|improve this answer
feedback

However I notice Microsoft uses its own delegate at some libraries, for example event handlers. So, what are the advantages and drawbacks of either of them? when should I use it?

Some of this is historic: APIs defined before C#3/.NET3 when Action<> and Func<> were added. For events EventHandler<T> is a better choice for events because it enforces the right convention.

link|improve this answer
this is from .NET 4 – Louis Rhys Dec 16 '10 at 9:05
1  
@Louis ... elsewhere in WF4 Func<> is used so that's odd. One that slipped through the consistency review? – Richard Dec 16 '10 at 9:28
feedback

You can always create a class which holds the n number of input as class properties and pass the object of the class a single input in the func<> delegate

link|improve this answer
how does this answer the question? – Louis Rhys Dec 16 '10 at 7:56
feedback

Your Answer

 
or
required, but never shown

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