Encapsulates a method that has no parameters and returns a value of the type specified by the TResult parameter.
Namespace: GroupDocs.Metadata.CommonAssembly: GroupDocs.Metadata (in GroupDocs.Metadata.dll) Version: 21.1
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