Function Delegate
Func
delegate is used for value returning methods.
It can contain minimum 0 and maximum of 16 input parameters in it and it must contain one output parameter.
The last parameter of the
Func
delegate is the output parameter or result parameter.It can also contain parameters of the same type or of different types.
Anonymous method with Func
delegate
Func
delegateFunc
delegate With lambda
Func
delegate With lambdaAdditional Reading
https://itnext.io/delegates-anonymous-methods-and-lambda-expressions-5ea4e56bbd05
Last updated