Tagged Questions
27
votes
4answers
3k views
In C#, why can't an anonymous method contain a yield statement?
I thought it would be nice to do something like this (with the lambda doing a yield return):
public IList<T> Find<T>(Expression<Func<T, bool>> expression) where T : class, ...
5
votes
6answers
445 views
How to yield return inside anonymous methods?
Basically I have an anonymous method that I use for my BackgroundWorker:
worker.DoWork += ( sender, e ) =>
{
foreach ( var effect in GlobalGraph.Effects )
{
// Returns EffectResult
...