+ 3
Advantage of lambda expression in c# ?
The usage and advantage of lambda expressions.
1 Answer
+ 9
Lambda expressions are a simpler syntax for anonymous delegates and can be used everywhere an anonymous delegate can be used. However, the opposite is not true; lambda expressions can be converted to expression trees which allows for a lot of the magic like LINQ to SQL.
Source - https://stackoverflow.com/questions/167343/c-sharp-lambda-expressions-why-should-i-use-them