Func<T1, TResult> Delegate
Encapsulates a method that has one parameter 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, out TResult>(T1 paramT1)
Public Delegate Function Func(Of In T1, Out TResult)(paramT1 As T1) As TResult
Parameters
| Type |
Name |
Description |
| T1 |
paramT1 |
Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter. |
Returns
| Type |
Description |
| TResult |
Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter. |
Type Parameters
| Name |
Description |
| T1 |
|
| TResult |
|
Constructors
Methods