Tagged Questions
5
votes
6answers
446 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
...