[]
        
(Showing Draft Content)

C1.Util.DX.Func-2

Func<T1, TResult> Delegate

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

Namespace: C1.Util.DX
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

Name Description
Func(object, nint)

Methods

Name Description
BeginInvoke(T1, AsyncCallback, object)
EndInvoke(IAsyncResult)
Invoke(T1)