本文介绍了捕获准确的执行时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,



我尝试捕捉功能的确切执行时间



Hi all,

I try to capture the exact execution time of function

Stopwatch regularSW = new Stopwatch();
for (int i = 0; i < 10; i++){
regularSW.Start();
//function();
regularSW.Stop();

Console.WriteLine("Measured time: " + regularSW.Elapsed);
}





还尝试使用DateTime和Process.GetCurrentProcess()。TotalProcessorTime

And每次我得到不同的价值。



如何获得相同的价值?



Also tried with DateTime and with Process.GetCurrentProcess().TotalProcessorTime
And each time i get different value.

How i can get same value ?

推荐答案




这篇关于捕获准确的执行时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 22:56