c# lamba expression - add delegate results to generic list - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:22:12Z http://stackoverflow.com/feeds/question/782933 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/782933/c-lamba-expression-add-delegate-results-to-generic-list 1 c# lamba expression - add delegate results to generic list mohlsen 2009-04-23T18:23:34Z 2009-04-23T19:30:20Z <p><strong>Question:</strong> I have just wrote my first code using c# lamba expressions. It works, but I am not sure if this is the best way to do it. Any recommendations on a better way to do the lambda expression? It seems odd to have numerous lines of code in the expression like I do below.</p> <p><strong>Background:</strong> I have a generic list of delegates. Each delegate function returns an enum value indicating what happened in the function. Upon evaluation of the delegate, I need to add the enum to a List if it was not a specific enum value.</p> <p><strong>Disclaimer:</strong> Code here is very generic, the real code actually does stuff in the delegates to determine the return value!</p> <p><hr /></p> <pre><code>class Class1 { public enum WhatHappened { ThingA, ThingB, Nothing } private delegate WhatHappened del(); public static List&lt;WhatHappened&gt; DoStuff() { List&lt;del&gt; CheckValues = new List&lt;del&gt;(); List&lt;WhatHappened&gt; returnValue = new List&lt;WhatHappened&gt; { }; CheckValues.Add(delegate { return method1(); }); CheckValues.Add(delegate { return method2(); }); CheckValues.ForEach(x =&gt; { WhatHappened wh = x(); if (wh != WhatHappened.Nothing) returnValue.Add(wh); }); return returnValue; } private static WhatHappened method1() { return WhatHappened.Nothing; } private static WhatHappened method2() { return WhatHappened.ThingA; } } </code></pre> <p><strong>Note:</strong> I originally had the lambda like adding all the items (see below), then removing the ones I didn't want (WhatHappened.Nothing).</p> <pre><code>CheckValues.ForEach(x =&gt; returnValue.Add(x())); </code></pre> http://stackoverflow.com/questions/782933/c-lamba-expression-add-delegate-results-to-generic-list/782964#782964 1 Answer by José Basilio for c# lamba expression - add delegate results to generic list José Basilio 2009-04-23T18:33:04Z 2009-04-23T18:33:04Z <p>In my opinion, based on the example, it looks fine. You could refactor even more by replacing:</p> <pre><code>CheckValues.Add(delegate { return method1(); }); CheckValues.Add(delegate { return method2(); }); </code></pre> <p>with:</p> <pre><code>CheckValues.Add(() =&gt; WhatHappened.Nothing); CheckValues.Add(() =&gt; WhatHappened.ThingA); </code></pre> http://stackoverflow.com/questions/782933/c-lamba-expression-add-delegate-results-to-generic-list/782966#782966 3 Answer by chakrit for c# lamba expression - add delegate results to generic list chakrit 2009-04-23T18:33:09Z 2009-04-23T18:38:36Z <p>You can go lambda all the way by chaining Select (map) and Where (filter) instead of multiple FOR loops and IF statements</p> <pre><code>// get results from the list of functions var results = CheckValues.Select(x =&gt; x()); // filter out only the relevant ones. var returnValues = results.Where(x =&gt; x != WhatHappened.Nothing); </code></pre> <p>Basically, you should think more <strong><a href="http://en.wikipedia.org/wiki/Declarative%5Fprogramming" rel="nofollow">declaratively</a></strong> instead of <strong><a href="http://en.wikipedia.org/wiki/Imperative%5Fprogramming" rel="nofollow">imperatively</a></strong> when work ing with lambdas. It'll help you write more elegant code.</p> http://stackoverflow.com/questions/782933/c-lamba-expression-add-delegate-results-to-generic-list/782968#782968 2 Answer by JaredPar for c# lamba expression - add delegate results to generic list JaredPar 2009-04-23T18:33:19Z 2009-04-23T18:47:25Z <p>It's a bit more idiomatic to write the following instead of using the delegate keyword. It doesn't change the underlying functionality though. </p> <pre><code>CheckValues.Add( () =&gt; method1() ); </code></pre> <p>Also, I find it more readable to rewrite the ForEach as the following</p> <pre><code>CheckValues = CheckValues. Select(x =&gt; x()). Where(wh =&gt; wh != WhatHappened.Nothing ). ToList(); </code></pre> http://stackoverflow.com/questions/782933/c-lamba-expression-add-delegate-results-to-generic-list/782976#782976 9 Answer by Jon Skeet for c# lamba expression - add delegate results to generic list Jon Skeet 2009-04-23T18:35:44Z 2009-04-23T19:21:52Z <p>Okay, a few suggestions:</p> <ul> <li>Don't call your delegate <code>del</code>. In this case, I'd use <code>Func&lt;WhatHappened&gt;</code> - but if you <em>do</em> want to declare your own delegate type, give it a more descriptive name, and obey the .NET naming conventions.</li> <li><p>Instead of using anonymous methods to add to <code>CheckValues</code>, you can just use:</p> <pre><code>CheckValues.Add(method1); CheckValues.Add(method2); </code></pre> <p>The compiler will convert the method groups into delegates.</p></li> <li><p>I'd recommend not using Pascal case for a local variable name to start with.</p></li> <li>Your collection initializer for <code>returnValues</code> isn't really doing anything for you - just call the <code>List&lt;T&gt;</code> constructor as normal, or use my code below which doesn't require a local variable to start with.</li> <li>If your list <em>really</em> only has two delegates in it, I'd just call them separately. It's a lot simpler.</li> <li><p>Otherwise you can indeed use LINQ as Jared suggests, but I'd do it slightly differently:</p> <pre><code>return CheckValues.Select(x =&gt; x()) .Where(wh =&gt; wh != WhatHappened.Nothing) .ToList(); </code></pre></li> </ul> <p>EDIT: As suggested, here's the full example. It's not quite the same as Denis's though... I've made a couple of changes :)</p> <pre><code>public static List&lt;WhatHappened&gt; DoStuff() { var functions = new List&lt;Func&lt;WhatHappened&gt;&gt; { Method1, Method2 }; return functions.Select(function =&gt; function()) .Where(result =&gt; result != WhatHappened.Nothing) .ToList(); } </code></pre> <p>(I'm assuming that <code>method1</code> and <code>method2</code> have been renamed to fit the naming convention. Of course in real life I'm sure they'd have more useful names anyway...)</p> http://stackoverflow.com/questions/782933/c-lamba-expression-add-delegate-results-to-generic-list/782993#782993 3 Answer by Denis Troller for c# lamba expression - add delegate results to generic list Denis Troller 2009-04-23T18:38:32Z 2009-04-23T18:38:32Z <p>I would simply use Linq, but that's just me:</p> <pre><code>public static List&lt;WhatHappened&gt; DoStuff() { List&lt;del&gt; CheckValues = new List&lt;del&gt;(); List&lt;WhatHappened&gt; returnValue = new List&lt;WhatHappened&gt;(); CheckValues.Add(method1); CheckValues.Add(method2); return CheckValues .Select(dlg =&gt; dlg()) .Where( res =&gt; res != WhatHappened.Nothing) .ToList(); } </code></pre> <p>Note that you can also use Func instead of declaring a Delegate type if you want, but that's less terse in that case. Also, I'd return an <code>IEnumerable&lt;WhatHappened&gt;</code> instead of a List, but it's all about the context.</p> http://stackoverflow.com/questions/782933/c-lamba-expression-add-delegate-results-to-generic-list/782995#782995 1 Answer by Michael Meadows for c# lamba expression - add delegate results to generic list Michael Meadows 2009-04-23T18:38:47Z 2009-04-23T18:38:47Z <p>Here's a LINQ-free solution:</p> <pre><code>return CheckValues .ConvertAll&lt;WhatHappened&gt;(x =&gt; x()) .FindAll(y =&gt; y != WhatHappened.Nothing); </code></pre> <p><strong>caveat</strong></p> <p>This is not the most performant solution, as it would iterate twice.</p> http://stackoverflow.com/questions/782933/c-lamba-expression-add-delegate-results-to-generic-list/783091#783091 0 Answer by Gishu for c# lamba expression - add delegate results to generic list Gishu 2009-04-23T19:04:01Z 2009-04-23T19:30:20Z <p>I can't fathom the purpose of the code.. however here goes.<br /> Used delegate chaining <strong>Update:</strong> and picked up some Enumerable goodness from Jon n Jared's posts</p> <pre><code>private delegate WhatHappened WhatHappenedDelegate(); public static List&lt;WhatHappened&gt; DoStuff() { WhatHappenedDelegate delegateChain = null; delegateChain += method1; delegateChain += method2; return delegateChain.GetInvocationList() .Select(x =&gt; (WhatHappened) x.DynamicInvoke()) .Where( wh =&gt; (wh != WhatHappened.Nothing)) .ToList&lt;WhatHappened&gt;(); } </code></pre>