Lambdas for both Func and Action

suggest change

Typically lambdas are used for defining simple functions (generally in the context of a linq expression):

var incremented = myEnumerable.Select(x => x + 1);

Here the return is implicit.

However, it is also possible to pass actions as lambdas:

myObservable.Do(x => Console.WriteLine(x));

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents