Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter.
Namespace: GroupDocs.Conversion.ContractsAssembly: GroupDocs.Conversion (in GroupDocs.Conversion.dll) Version: 21.2.0.0 (21.2)
Syntaxpublic delegate TResult Func<in T0, out TResult>(
T0 arg0
)
Public Delegate Function Func(Of In T0, Out TResult) (
arg0 As T0
) As TResult
generic<typename T0, typename TResult>
public delegate TResult Func(
T0 arg0
)
type Func =
delegate of
arg0 : 'T0 -> 'TResult
Parameters
- arg0
- Type: T0
Type Parameters
- T0
- The type of the parameter that will be provided to this delegate.
- TResult
- The type of the return value of the method that this delegate encapsulates.
Return Value
Type:
TResultThe return value of the method that this delegate encapsulates.
See Also