Sangat berguna untuk mendorong kode pembandingan Anda ke kelas / metode utilitas. The StopWatch
kelas tidak perlu Disposed
atau Stopped
pada kesalahan. Jadi, kode paling sederhana untuk menentukan waktu beberapa tindakan adalah
public partial class With
{
public static long Benchmark(Action action)
{
var stopwatch = Stopwatch.StartNew();
action();
stopwatch.Stop();
return stopwatch.ElapsedMilliseconds;
}
}
Contoh kode panggilan
public void Execute(Action action)
{
var time = With.Benchmark(action);
log.DebugFormat(“Did action in {0} ms.”, time);
}
Ini adalah versi metode ekstensi
public static class Extensions
{
public static long Benchmark(this Action action)
{
return With.Benchmark(action);
}
}
Dan contoh kode panggilan
public void Execute(Action action)
{
var time = action.Benchmark()
log.DebugFormat(“Did action in {0} ms.”, time);
}