FuncTResult

Func<TResult> delegate

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

public delegate TResult Func<out TResult>();
Parameter Description
TResult The type of the return value of the method that this delegate encapsulates.

Return Value

The return value of the method that this delegate encapsulates.

See Also