Lambda Expressions
2 sectionsRapid overview
Lambda Expressions
TL;DR
A lambda expression (x => x 2) is an anonymous function written inline. On its own it has no type: the compiler converts it either to a delegate (compiled IL you can call, such as Func<int, int>) or to an expression tree (Expression<Func<i…
Read →How it works
Q: What is a lambda expression?
Read →