What’s the difference between anonymous methods (C# 2.0) and lambda expressions (C# 3.0)? [duplicate]
Lambda expressions can be converted to delegates or expression trees (with some restrictions); anonymous methods can only be converted to delegates Lambda expressions allow type inference on parameters: Lambda expressions allow the body to be truncated to just an expression (to return a value) or single statement (in other cases) without braces. Lambda expressions allow … Read more