Anonymous methods/delegates and lambda expressions - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T15:53:15Zhttp://stackoverflow.com/feeds/question/106324http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions3Anonymous methods/delegates and lambda expressionsdragon2008-09-19T23:14:44Z2008-09-29T15:51:20Z
<p>With the advent of new features like lambda expressions (inline code), does it mean we dont have to use delegates or anonymous methods anymore? In almost all the samples I have seen, it is for rewriting using the new syntax.</p>
<p>Any place where we still have to use delegates and lambda expressions won't work?</p>
http://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions/106348#1063483Answer by Darren Kopp for Anonymous methods/delegates and lambda expressionsDarren Kopp2008-09-19T23:20:11Z2008-09-19T23:20:11Z<p>lambda is shortcut for anonymous delegate, but you will always be using delegates. the delegate specifies the methods signature. you can just do this:</p>
<pre><code> delegate(int i) { Console.WriteLine(i.ToString()) }
</code></pre>
<p>can be replaced with</p>
<pre><code>f => Console.WriteLine(f.ToString())
</code></pre>
http://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions/106356#1063562Answer by Martin C. for Anonymous methods/delegates and lambda expressionsMartin C.2008-09-19T23:22:13Z2008-09-19T23:22:13Z<p>Lambda expressions are just "syntactic sugar", the compiler will generate appropriate delegates for you. You can investigate this by using Lutz Roeder's Reflector.</p>
http://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions/106374#1063743Answer by sontek for Anonymous methods/delegates and lambda expressionssontek2008-09-19T23:27:20Z2008-09-19T23:27:20Z<p>Lamda's are just syntactic sugar for delegates, they are not just inline, you can do the following:</p>
<pre><code>s.Find(a =>
{
if (a.StartsWith("H"))
return a.Equals("HI");
else
return !a.Equals("FOO");
});
</code></pre>
<p>And delegates are still used when defining events, or when you have lots of arguments and want to actually strongly type the method being called.</p>
http://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions/106480#1064808Answer by James Newton-King for Anonymous methods/delegates and lambda expressionsJames Newton-King2008-09-20T00:00:29Z2008-09-20T00:00:29Z<p>Yes there are places where directly using anonymous delegates and lambda expressions won't work.</p>
<p>If a method takes an untyped Delegate then the compiler doesn't know what to resolve the anonymous delegate/lambda expression to and you will get a compiler error.</p>
<pre><code>public static void Invoke(Delegate d)
{
d.DynamicInvoke();
}
static void Main(string[] args)
{
// fails
Invoke(() => Console.WriteLine("Test"));
// works
Invoke(new Action(() => Console.WriteLine("Test")));
Console.ReadKey();
}
</code></pre>
<p>The failing line of code will get the compiler error "Cannot convert lambda expression to type 'System.Delegate' because it is not a delegate type".</p>
http://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions/144638#1446380Answer by olavk for Anonymous methods/delegates and lambda expressionsolavk2008-09-27T22:33:07Z2008-09-27T22:33:07Z<p>Delegate have two meanings in C#.</p>
<p>The keyword <code>delegate</code> can be used to define a function signature type. This is usually used when defininge the signature of higher-order functions, i.e. functions that take other functions as arguments. This use of delegate is still relevant.</p>
<p>The <code>delegate</code> keyword can also be used to define an inline anonymous function. In the case where the function is just a single expression, the lambda syntax is a simpler alternative.</p>
http://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions/149319#1493193Answer by Dandikas for Anonymous methods/delegates and lambda expressionsDandikas2008-09-29T15:51:20Z2008-09-29T15:51:20Z<p>Lambda expression is not (and was not meant to be) a silver bullet that would replace (hide) delegates. It is great with small local things like:</p>
<pre><code>List<string> names = GetNames();
names.ForEach(Console.WriteLine);
</code></pre>
<ol>
<li>it makes code more readable thus simple to understand.</li>
<li>It makes code shorter thus less work for us ;)</li>
</ol>
<p>On the other hand it is very simple to misuse them. Long or/and complex lambda expressions are tending to be:</p>
<ol>
<li>Hard to understand for new developers</li>
<li>Less object oriented</li>
<li>Much harder to read</li>
</ol>
<p>So “does it mean we don’t have to use delegates or anonymous methods anymore?” No – use Lambda expression where you win time/readability otherwise consider using delegates.</p>