Func<T1, T2, TResult> Delegate
Encapsulates a method that has two parameters and returns a value of the type specified by the TResult parameter.
Assembly: C1.Win.DX.10.dll
Syntax
public delegate TResult Func<in T1, in T2, out TResult>(T1 paramT1, T2 paramT2)
Public Delegate Function Func(Of In T1, In T2, Out TResult)(paramT1 As T1, paramT2 As T2) As TResult
Parameters
| Type |
Name |
Description |
| T1 |
paramT1 |
Encapsulates a method that has two parameters and returns a value of the type specified by the TResult parameter. |
| T2 |
paramT2 |
Encapsulates a method that has two parameters and returns a value of the type specified by the TResult parameter. |
Returns
| Type |
Description |
| TResult |
Encapsulates a method that has two parameters and returns a value of the type specified by the TResult parameter. |
Type Parameters
| Name |
Description |
| T1 |
|
| T2 |
|
| TResult |
|
Constructors
Methods