show/hide this revision's text 3 added 821 characters in body

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.

--

If you didn't want the functionality to be tied to any class / object you could do something like:

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

    return sw;
  }
}

Then you could use it like:

StopWatch sw = Timing.TimedFor(() => DoStuff(s), 1000);

Failing that, this answer looks like it has some decent "generic" ability:

http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda#232878

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

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 MyObject 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.

show/hide this revision's text 1

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