StopWatch
Sınıf olmak gerekmez Disposed
veya Stopped
hata. Bu nedenle, bazı eylemleri zamanlamak için en basit kod ,
public partial class With
{
public static long Benchmark(Action action)
{
var stopwatch = Stopwatch.StartNew();
action();
stopwatch.Stop();
return stopwatch.ElapsedMilliseconds;
}
}
Örnek arama kodu
public void Execute(Action action)
{
var time = With.Benchmark(action);
log.DebugFormat(“Did action in {0} ms.”, time);
}
Yinelemeleri StopWatch
koda dahil etme fikri hoşuma gitmiyor . Her zaman N
yinelemelerin yürütülmesini işleyen başka bir yöntem veya uzantı oluşturabilirsiniz .
public partial class With
{
public static void Iterations(int n, Action action)
{
for(int count = 0; count < n; count++)
action();
}
}
Örnek arama kodu
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);
}
İşte uzantı yöntemi sürümleri
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);
}
}
Ve örnek arama kodu
public void Execute(Action action, int n)
{
var time = action.Iterations(n).Benchmark()
log.DebugFormat(“Did action {0} times in {1} ms.”, n, time);
}
Statik yöntemleri ve uzantı yöntemlerini (yinelemeleri ve karşılaştırmayı birleştiren) test ettim ve beklenen yürütme süresi ve gerçek yürütme süresinin deltası <= 1 ms.