มีประโยชน์ในการส่งรหัสการเปรียบเทียบของคุณไปยังคลาส / วิธีการยูทิลิตี้ StopWatch
ชั้นไม่จำเป็นต้องมีDisposed
หรือStopped
ข้อผิดพลาด ดังนั้นรหัสที่ง่ายที่สุดในบางครั้งการกระทำคือ
public partial class With
{
public static long Benchmark(Action action)
{
var stopwatch = Stopwatch.StartNew();
action();
stopwatch.Stop();
return stopwatch.ElapsedMilliseconds;
}
}
ตัวอย่างรหัสโทร
public void Execute(Action action)
{
var time = With.Benchmark(action);
log.DebugFormat(“Did action in {0} ms.”, time);
}
นี่คือเวอร์ชันวิธีการขยาย
public static class Extensions
{
public static long Benchmark(this Action action)
{
return With.Benchmark(action);
}
}
และตัวอย่างรหัสการโทร
public void Execute(Action action)
{
var time = action.Benchmark()
log.DebugFormat(“Did action in {0} ms.”, time);
}