show/hide this revision's text 2 added 598 characters in body

Okay, a few suggestions:

  • Don't call your delegate del. In this case, I'd use Func<WhatHappened> - but if you do want to declare your own delegate type, give it a more descriptive name, and obey the .NET naming conventions.
  • Instead of using anonymous methods to add to CheckValues, you can just use:

    CheckValues.Add(method1);
    CheckValues.Add(method2);
    

    The compiler will convert the method groups into delegates.

  • I'd recommend not using Pascal case for a local variable name to start with.

  • Your collection initializer for returnValues isn't really doing anything for you - just call the List<T> constructor as normal, or use my code below which doesn't require a local variable to start with.
  • If your list really only has two delegates in it, I'd just call them separately. It's a lot simpler.
  • Otherwise you can indeed use LINQ as Jared suggests, but I'd do it slightly differently:

    return CheckValues.Select(x => x())
                      .Where(wh => wh != WhatHappened.Nothing)
                      .ToList();
    

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 :)

public static List<WhatHappened> DoStuff()
{
    var functions = new List<Func<WhatHappened>> { Method1, Method2 };

    return functions.Select(function => function())
                    .Where(result => result != WhatHappened.Nothing)
                    .ToList();
}

(I'm assuming that method1 and method2 have been renamed to fit the naming convention. Of course in real life I'm sure they'd have more useful names anyway...)

show/hide this revision's text 1

Okay, a few suggestions:

  • Don't call your delegate del. In this case, I'd use Func<WhatHappened> - but if you do want to declare your own delegate type, give it a more descriptive name, and obey the .NET naming conventions.
  • Instead of using anonymous methods to add to CheckValues, you can just use:

    CheckValues.Add(method1);
    CheckValues.Add(method2);
    

    The compiler will convert the method groups into delegates.

  • I'd recommend not using Pascal case for a local variable name to start with.

  • Your collection initializer for returnValues isn't really doing anything for you - just call the List<T> constructor as normal, or use my code below which doesn't require a local variable to start with.
  • If your list really only has two delegates in it, I'd just call them separately. It's a lot simpler.
  • Otherwise you can indeed use LINQ as Jared suggests, but I'd do it slightly differently:

    return CheckValues.Select(x => x())
                      .Where(wh => wh != WhatHappened.Nothing)
                      .ToList();