Encapsulates a method that has no parameters 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<out TResult>()
Public Delegate Function Func(Of Out TResult) As TResult
generic<typename TResult>
public delegate TResult Func()
type Func =
delegate of unit -> 'TResult
Type Parameters
- 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