Lambda Expressions
A lambda expression is an anonymous function that you can use to create delegates or expression tree types.
Syntax
(input-parameters) => expression
Example
csharp
List
Here x => x > 10 is a lambda that checks if a number is greater than 10.