I know how to use Action and Func in .Net, but every single time I start to, the exact same solution can be achieved with a regular old Method that I call instead.

This excludes when an Action or Func is used as an argument for something I don't control, like LINQ's .Where.

So basically my question is...why do these exist? What do they give me extra and new that a simple Method doesn't?

link|improve this question

I assume by "function", you mean "method", right? Want to make sure you're not referring to something more esoteric. – Michael Petrotta Oct 3 '11 at 2:18
@MichaelPetrotta : Yes I mean "method", I always use those words for the same thing even know I know they aren't. – James P. Wright Oct 3 '11 at 2:19
You've already identified a very powerful reason for Func<> to exist: Linq. The fact that you can do other things with them is a very nice bonus. – Anthony Pegram Oct 3 '11 at 2:29
feedback

3 Answers

Action and Func are framework-provided Delegate types. Delegates allow functions to be treated like variables, meaning that you can (among other things) pass them from method to method. If you have ever programmed in C++, you can think of Delegates as function pointers that are restricted by the signature of the method they refer to.

Action and Func specifically are generic delegates (meaning they take type parameters) with some of the most common signatures- almost any method in most programs can be represented using one or the other of those two, saving people a lot of time manually defining delegates like we did in .net prior to version 2. In fact, when I see code like this in a project, I can usually safely assume that the project was migrated from .net 1.1:

// This defines a delegate (a type that represents a function)
// but usages could easily be replaced with System.Action<String>
delegate void SomeApplicationSpecificName(String someArgument);

I'd recommend that you look into delegates some more. They are a hugely powerful feature of the C# language.

link|improve this answer
I know Delegates too (though have worked with them little). Your statement that they can be passed as arguments between methods really hits home as that is something I find incredibly helpful in Javascript and never put 2 and 2 together with Delegates. – James P. Wright Oct 3 '11 at 2:36
A cool and level-headed answer to a borderline-combative question. big +1. – Marc L. Oct 3 '11 at 4:47
feedback

I use them to create an array of functions. For instance, I may have a ComboBox full of actions that could be taken. I populate the ComboBox with items of a class or structure:

Public Class ComboBoxAction
    Public Sub New(Text As String, Method As Action)
        _Text = Text
        _Method = Method
    End Sub

    Private _Text As String

    Private _Method As Action

    Public Overrides Function ToString() As String
        Return _Text
    End Function

    Public Sub Go()
        _Method()
    End Sub
End Class

Then when someone selects an item, I can call the action.

CType(ComboBox1.SelectedItem, ComboBoxAction).Go()

This is far easier than having a Select statement determine which method to call based on the ComboBox's text.

link|improve this answer
feedback

There's plenty of cases where a Func can help where a Method wouldn't.

public void DoThing(MyClass foo, Func<MyClass, string> func)
{
    foo.DoSomething;
    var result = func(foo);
    foo.DoStringThing(result);
}

So you can specify a different Func whenever you call this method - the DoThing method doesn't need to know what's being done, just that whatever it is will return a string.

You can do this without using the Func keyword by using the delegate keyword instead; it works much the same way.

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.