System.Func<T,TResult> Delegate

Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter.

Syntax

public delegate TResult Func<T, TResult> (T arg1)

Type Parameters

T
Documentation for this section has not yet been entered.
TResult
Documentation for this section has not yet been entered.

Parameters

arg1
Documentation for this section has not yet been entered.

Value

Documentation for this section has not yet been entered.

Remarks

You can use this delegate to represent a method that can be passed as a parameter without explicitly declaring a custom delegate. The encapsulated method must correspond to the method signature that is defined by this delegate. This means that the encapsulated method must have one parameter that is passed to it by value, and that it must return a value.

Note:

To reference a method that has one parameter and returns void (or in Visual Basic, that is declared as a Sub rather than as a Function), use the generic Action`1 delegate instead.

When you use the Func`2 delegate, you do not have to explicitly define a delegate that encapsulates a method with a single parameter. For example, the following code explicitly declares a delegate named ConvertMethod and assigns a reference to the UppercaseString method to its delegate instance.

code reference: System.Func~2#1

The following example simplifies this code by instantiating the Func`2 delegate instead of explicitly defining a new delegate and assigning a named method to it.

code reference: System.Func~2#2

You can also use the Func`2 delegate with anonymous methods in C#, as the following example illustrates. (For an introduction to anonymous methods, see Anonymous Methods (C# Programming Guide).)

code reference: System.Func~2#3

You can also assign a lambda expression to a Func`2 delegate, as the following example illustrates. (For an introduction to lambda expressions, see Lambda Expressions and Lambda Expressions (C# Programming Guide).)

code reference: System.Func~2#4

The underlying type of a lambda expression is one of the generic Func delegates. This makes it possible to pass a lambda expression as a parameter without explicitly assigning it to a delegate. In particular, because many methods of types in the System.Linq namespace have Func`2 parameters, you can pass these methods a lambda expression without explicitly instantiating a Func`2 delegate.

Requirements

Namespace: System
Assembly: System.Core (in System.Core.dll)
Assembly Versions: 3.5.0.0