2017年7月13日 星期四

[C#] Performance Testing - Stopwatch


  • Code

using System.Diagnostics;
// ...

Stopwatch sw = new Stopwatch();

sw.Start();

// ...

sw.Stop();

Console.WriteLine("Elapsed={0}",sw.Elapsed);
  • Ref
    • https://stackoverflow.com/questions/969290/exact-time-measurement-for-performance-testing

沒有留言:

張貼留言