Func(Of T1, T2, T3, T4, TResult) Delegate
Encapsulates a method that has four parameters and returns a value of the type specified by the TResult parameter.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Delegate Function Func(Of T1, T2, T3, T4, TResult) ( _ arg1 As T1, _ arg2 As T2, _ arg3 As T3, _ arg4 As T4 _ ) As TResult 'Usage Dim instance As New Func(Of T1, T2, T3, T4, TResult)(AddressOf HandlerMethod)
Type Parameters
- T1
The type of the first parameter of the method that this delegate encapsulates.
- T2
The type of the second parameter of the method that this delegate encapsulates.
- T3
The type of the third parameter of the method that this delegate encapsulates.
- T4
The type of the fourth parameter of the method that this delegate encapsulates.
- TResult
The type of the return value of the method that this delegate encapsulates.
Parameters
- arg1
- Type: T1
The first parameter of the method that this delegate encapsulates.
- arg2
- Type: T2
The second parameter of the method that this delegate encapsulates.
- arg3
- Type: T3
The third parameter of the method that this delegate encapsulates.
- arg4
- Type: T4
The fourth parameter of the method that this delegate encapsulates.
Return Value
Type: TResultThe return value of the method that this delegate encapsulates.
You can use this delegate to represent a method that can be passed as a parameter without explicitly declaring a custom delegate. The method must correspond to the method signature that is defined by this delegate. This means that the encapsulated method must have four parameters, each of which is passed to it by value, and that it must return a value.
Note: |
|---|
To reference a method that has four parameters and that returns void (or in Visual Basic, that is declared as a Sub rather than as a Function), use the generic Action(Of T1, T2, T3, T4) delegate instead. |
When you use the Func(Of T1, T2, T3, T4, TResult) delegate, you do not have to explicitly define a delegate that encapsulates a method with four parameters. For example, the following code explicitly declares a generic delegate named Searcher and assigns a reference to the IndexOf method to its delegate instance.
Delegate Function Searcher(searchString As String, _ start As Integer, _ count As Integer, _ type As StringComparison) As Integer Module DelegateExample Public Sub Main() Dim title As String = "The House of the Seven Gables" Dim position As Integer = 0 Dim finder As Searcher = AddressOf title.IndexOf Do Dim characters As Integer = title.Length - position position = finder("the", position, characters, _ StringComparison.InvariantCultureIgnoreCase) If position >= 0 Then position += 1 Console.WriteLine("'The' found at position {0} in {1}.", _ position, title) End If Loop While position > 0 End Sub End Module
The following example simplifies this code by instantiating the Func(Of T1, T2, T3, T4, TResult) delegate rather than explicitly defining a new delegate and assigning a named method to it.
Module DelegateExample Public Sub Main() Dim title As String = "The House of the Seven Gables" Dim position As Integer = 0 Dim finder As Func(Of String, Integer, Integer, StringComparison, Integer) _ = AddressOf title.IndexOf Do Dim characters As Integer = title.Length - position position = finder("the", position, characters, _ StringComparison.InvariantCultureIgnoreCase) If position >= 0 Then position += 1 Console.WriteLine("'The' found at position {0} in {1}.", _ position, title) End If Loop While position > 0 End Sub End Module
You can use the Func(Of T1, T2, T3, T4, TResult) delegate with anonymous methods in C#, as the following example illustrates. (For an introduction to anonymous methods, see Anonymous Methods (C# Programming Guide).)
using System; public class DelegateExample { public static void Main() { string title = "The House of the Seven Gables"; int position = 0; Func<string, int, int, StringComparison, int> finder = delegate(string s, int pos, int chars, StringComparison type) { return title.IndexOf(s, pos, chars, type); }; do { int characters = title.Length - position; position = finder("the", position, characters, StringComparison.InvariantCultureIgnoreCase); if (position >= 0) { position++; Console.WriteLine("'The' found at position {0} in {1}.", position, title); } } while (position > 0); } }
You can also assign a lambda expression to a Func(Of T1, T2, T3, T4, TResult) delegate, as the following example illustrates. (For an introduction to lambda expressions, see Lambda Expressions and Lambda Expressions (C# Programming Guide).)
Module DelegateExample Public Sub Main() Dim title As String = "The House of the Seven Gables" Dim position As Integer = 0 Dim finder As Func(Of String, Integer, Integer, StringComparison, Integer) _ = Function(s, pos, chars, type) _ title.IndexOf(s, pos, chars, type) Do Dim characters As Integer = title.Length - position position = finder("the", position, characters, _ StringComparison.InvariantCultureIgnoreCase) If position >= 0 Then position += 1 Console.WriteLine("'The' found at position {0} in {1}.", _ position, title) End If Loop While position > 0 End Sub End Module
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 parameters, you can pass these methods a lambda expression without explicitly instantiating a Func delegate.
The following example demonstrates how to declare and use a Func(Of T1, T2, TResult) delegate. This example declares a Func(Of T1, T2, TResult) variable and assigns it a lambda expression that takes a String value and an Int32 value as parameters. The lambda expression returns true if the length of the String parameter is equal to the value of the Int32 parameter. The delegate that encapsulates this method is subsequently used in a query to filter strings in an array of strings.
Imports System.Collections.Generic Imports System.Linq Public Module Func3Example Public Sub Main() Dim predicate As Func(Of String, Integer, Boolean) = Function(str, index) str.Length = index Dim words() As String = { "orange", "apple", "Article", "elephant", "star", "and" } Dim aWords As IEnumerable(Of String) = words.Where(predicate) For Each word As String In aWords Console.WriteLine(word) Next End Sub End Module
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: