只是好奇人们认为什么是计算搜索需要多长时间然后向用户显示时间的最佳方法。
我将 DateTime 与 Timespan 以及 Stopwatch sw = new Stopwatch 一起使用。
我认为与具有时间跨度的 DateTime 相比,使用 Stopwatch 是更简洁的代码。
所以我只是好奇专业程序员使用什么。
IE
Stopwatch WebSearchTime = new Stopwatch();
WebSearchTime.Start();
code to run
WebSearchTime.Stop();
double WST = WebSearchTime.Elapsed.Seconds + (WebSearchTime.Elapsed.Milliseconds / 1000.0);
谢谢
乔治