You could try writing an extension method for whatever class you're using (or any base class).

I would have the call look like:

    StopWatch sw = MyObject.TimedFor(1000, () => DoStuff(s));
    
    public static StopWatch TimedFor(this MyObject source, Int32 loops, Action action)
    {
    var sw = new Stopwatch();
    sw.Start();
    for (int i = 0; i < loops; ++i)
    {
        action.Invoke();
    }
    sw.Stop();
    
    return sw;
    }