FuncTTResult
Func<T,TResult> delegate
Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter.
public delegate TResult Func<in T, out TResult>(T arg);
| Parameter | Description | 
|---|---|
| T | The type of the parameter of the method that this delegate encapsulates. | 
| TResult | The type of the return value of the method that this delegate encapsulates. | 
| arg | The parameter of the method that this delegate encapsulates. | 
Return Value
The return value of the method that this delegate encapsulates.
See Also
- namespace GroupDocs.Metadata.Common
 - assembly GroupDocs.Metadata