La StopWatch
classe non deve essere Disposed
o Stopped
in errore. Quindi, il codice più semplice per il tempo una certa azione è
public partial class With
{
public static long Benchmark(Action action)
{
var stopwatch = Stopwatch.StartNew();
action();
stopwatch.Stop();
return stopwatch.ElapsedMilliseconds;
}
}
Codice di chiamata di esempio
public void Execute(Action action)
{
var time = With.Benchmark(action);
log.DebugFormat(“Did action in {0} ms.”, time);
}
Non mi piace l'idea di includere le iterazioni nel StopWatch
codice. Puoi sempre creare un altro metodo o estensione che gestisca l'esecuzione delle N
iterazioni.
public partial class With
{
public static void Iterations(int n, Action action)
{
for(int count = 0; count < n; count++)
action();
}
}
Codice di chiamata di esempio
public void Execute(Action action, int n)
{
var time = With.Benchmark(With.Iterations(n, action));
log.DebugFormat(“Did action {0} times in {1} ms.”, n, time);
}
Ecco le versioni del metodo di estensione
public static class Extensions
{
public static long Benchmark(this Action action)
{
return With.Benchmark(action);
}
public static Action Iterations(this Action action, int n)
{
return () => With.Iterations(n, action);
}
}
E codice di chiamata di esempio
public void Execute(Action action, int n)
{
var time = action.Iterations(n).Benchmark()
log.DebugFormat(“Did action {0} times in {1} ms.”, n, time);
}
Ho testato i metodi statici e i metodi di estensione (combinando iterazioni e benchmark) e il delta del tempo di esecuzione previsto e del tempo di esecuzione reale è <= 1 ms.