I'm writing code like this, doing a little quick and dirty timing:

    var sw = new Stopwatch();
    sw.Start();
    for (int i = 0; i < 1000; i++)
    {
        b = DoStuff(s);
    }
    sw.Stop();
    Console.WriteLine(sw.ElapsedMilliseconds);

Surely there's a way to call this bit of timing code as a fancy-schmancy .NET 3.0 lambda rather than (God forbid) cutting and pasting it a few times and replacing the **`DoStuff(s)`** with **`DoSomethingElse(s)`**?

I know it can be done as a `Delegate` but I'm wondering about the lambda way.