What is the difference between anonymous methods of C# 2.0 and lambda expressions of C# 3.0.?
|
5
|
|
|
|
|
|
The MSDN page on anonymous methods explains it
And regarding lambda expressions:
|
|||
|
|
|
|
The last point is the only benefit of anonymous methods over lambdas, I believe. It's useful to create a field-like event with a no-op subscription though:
|
||
|
|
|
|
The range of more or less subtle differences are explained by Eric Lippert (C# language designer) in his blog: |
|||
|
|
|
|
First, convenience: lambdas are easier to read and write. Second, expressions: lambdas can be compiled to either a delegate, or an expression tree (
Note that lambda expressions with statement bodies can only be compiled to delegates, not
|
|||
|
|
