vote up 5 vote down star
2

Duplicate: http://stackoverflow.com/questions/299703/c-delegate-keyword-vs-lambda-notation

I understand the anonymous methods can be used to define delegates and write inline functions. Is using Lambda expressions any different from this?

I guess I am a little confused on when to use what.

Edit: Also, appears that to use either anonymous or lambdas, there needs to be an Extension method for the type?

flag

17% accept rate

4 Answers

vote up 2 vote down

Not really no. They are essentially the exact same feature with different syntax constructs. The general shift appears to be away from the C# 2.0 anonymous method syntax towards the lambda style syntax for both anonymous expressions and functions though.

link|flag
vote up 8 vote down

A lambda expression is simply shortcut syntax for an anonymous method. Anonymous methods look like this:

delegate(params) {method body}

The equivalent lambda expression would look like this:

params => method body

In short, all lambda expressions are anonymous methods, but it is possible to have an anonymous method that is not written in lambda syntax (like the first example above). Hope this is helpful!

link|flag
+1, but aren't lambda expressions just reinventing the wheel (rather poorly, as I though anonymous methods made more sense). – SnOrfus Apr 17 at 17:10
so lambada expression can NOT have return valuess? while anonymous method can? – Sasha Apr 17 at 17:13
1  
SnOrfus: yes they do the same thing so you're right, it's just a matter of syntax preference. Sasha: both lambdas and anonymous methods can have return values. – Adam Alexander Apr 17 at 17:19
1  
Lambdas make the use of anonymous delegates much more terse through syntax shortcuts and type inference. i = l.Count(delegate(string x) { return x.Length == 2; }); i = l.Count(x => x.Length == 2); – Mark Apr 17 at 17:38
1  
lambdas use implied typing, so "(x, y) => x + y;" is much more concise than "delegate(int x, int y) { return x + y; }" Use lambdas when they promote readability, and anonymous delegates when they make sense. – Michael Meadows Apr 17 at 17:46
vote up 0 vote down

Here's a good explanation: C#: delegate keyword vs. lambda notation

link|flag
vote up 0 vote down

Lambda expressions can be converted to expression trees, while anonymous delegates cannot.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.