I can't fathom the purpose of the code.. however the following does the same thing - no lambdas if that's what you're afterhere goes.
Used delegate chaining
Update: and seq invocation to get the resultspicked up some Enumerable goodness from Jon n Jared's posts
private delegate WhatHappened WhatHappenedDelegate();
public static List<WhatHappened> DoStuff()
{
WhatHappenedDelegate delegateChain = null;
delegateChain += method1;
delegateChain += method2;
List<WhatHappened> listOfThingsThatHappened return delegateChain.GetInvocationList()
.Select(x =new List<WhatHappened>();
foreach > (WhatHappenedDelegate del in delegateChain.GetInvocationList()WhatHappened) x.DynamicInvoke())
{
var eWhatHappened .Where( wh =del.Invoke();
if > (eWhatHappened =wh != WhatHappened.NothingWhatHappened.Nothing))
continue;
listOfThingsThatHappened.Add(eWhatHappened);
}
return listOfThingsThatHappened;
.ToList<WhatHappened>();
}
