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

Then the extension method:    

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

Any object deriving from DependencyObject can now call TimedFor(..). The function can easily be adjusted to provide return values via ref params.