Anonymous methods/delegates and lambda expressions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T15:53:15Z http://stackoverflow.com/feeds/question/106324 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions 3 Anonymous methods/delegates and lambda expressions dragon 2008-09-19T23:14:44Z 2008-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#106348 3 Answer by Darren Kopp for Anonymous methods/delegates and lambda expressions Darren Kopp 2008-09-19T23:20:11Z 2008-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 =&gt; Console.WriteLine(f.ToString()) </code></pre> http://stackoverflow.com/questions/106324/anonymous-methods-delegates-and-lambda-expressions/106356#106356 2 Answer by Martin C. for Anonymous methods/delegates and lambda expressions Martin C. 2008-09-19T23:22:13Z 2008-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#106374 3 Answer by sontek for Anonymous methods/delegates and lambda expressions sontek 2008-09-19T23:27:20Z 2008-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 =&gt; { 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#106480 8 Answer by James Newton-King for Anonymous methods/delegates and lambda expressions James Newton-King 2008-09-20T00:00:29Z 2008-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(() =&gt; Console.WriteLine("Test")); // works Invoke(new Action(() =&gt; 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#144638 0 Answer by olavk for Anonymous methods/delegates and lambda expressions olavk 2008-09-27T22:33:07Z 2008-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#149319 3 Answer by Dandikas for Anonymous methods/delegates and lambda expressions Dandikas 2008-09-29T15:51:20Z 2008-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&lt;string&gt; 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>