show/hide this revision's text 2 deleted 33 characters in body

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>();
}
show/hide this revision's text 1

I can't fathom the purpose of the code.. however the following does the same thing - no lambdas if that's what you're after. Used delegate chaining and seq invocation to get the results

private delegate WhatHappened WhatHappenedDelegate();

public static List<WhatHappened> DoStuff()
{
    WhatHappenedDelegate delegateChain = null;
    delegateChain += method1;
    delegateChain += method2;

    List<WhatHappened> listOfThingsThatHappened = new List<WhatHappened>();
    foreach (WhatHappenedDelegate del in delegateChain.GetInvocationList())
    {
        var eWhatHappened = del.Invoke();
        if (eWhatHappened == WhatHappened.Nothing)
            continue;
        listOfThingsThatHappened.Add(eWhatHappened);
    }

    return listOfThingsThatHappened;
}