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<WhatHappened> DoStuff()
{
List<del> CheckValues = new List<del>();
List<WhatHappened> returnValue = new List<WhatHappened> { };
CheckValues.Add(delegate { return method1(); });
CheckValues.Add(delegate { return method2(); });
CheckValues.ForEach(x =>
{
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 => 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(() => WhatHappened.Nothing);
CheckValues.Add(() => 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 => x());
// filter out only the relevant ones.
var returnValues = results.Where(x => 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( () => method1() );
</code></pre>
<p>Also, I find it more readable to rewrite the ForEach as the following</p>
<pre><code>CheckValues = CheckValues.
Select(x => x()).
Where(wh => 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<WhatHappened></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<T></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 => x())
.Where(wh => 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<WhatHappened> DoStuff()
{
var functions = new List<Func<WhatHappened>> { Method1, Method2 };
return functions.Select(function => function())
.Where(result => 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<WhatHappened> DoStuff()
{
List<del> CheckValues = new List<del>();
List<WhatHappened> returnValue = new List<WhatHappened>();
CheckValues.Add(method1);
CheckValues.Add(method2);
return CheckValues
.Select(dlg => dlg())
.Where( res => 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<WhatHappened></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<WhatHappened>(x => x())
.FindAll(y => 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<WhatHappened> DoStuff()
{
WhatHappenedDelegate delegateChain = null;
delegateChain += method1;
delegateChain += method2;
return delegateChain.GetInvocationList()
.Select(x => (WhatHappened) x.DynamicInvoke())
.Where( wh => (wh != WhatHappened.Nothing))
.ToList<WhatHappened>();
}
</code></pre>