如何知道c#中的循环持续时间

时间:2013-08-25 08:39:26

标签: c# time

我在c#中搜索计算循环的持续时间或任何类似的东西的方法,认为我的程序包含或者在“for(...,...,...){}”时我需要花费多少时间由什么类型的方法输出

2 个答案:

答案 0 :(得分:5)

使用Stopwatch Class

  

提供一组可用于的方法和属性   准确地测量经过的时间。

    Stopwatch stopWatch = new Stopwatch();
    stopWatch.Start();

    // stuff you want to time here...

    stopWatch.Stop();

    // Get the elapsed time as a TimeSpan value.
    TimeSpan ts = stopWatch.Elapsed;

    // Format and display the TimeSpan value. 
    string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
        ts.Hours, ts.Minutes, ts.Seconds,
        ts.Milliseconds / 10);
    Console.WriteLine("RunTime " + elapsedTime);
  

秒表通过计算计时器滴答来测量经过的时间   基础计时器机制。如果安装了硬件并运行   系统支持高分辨率性能计数器,然后   秒表类使用该计数器来测量经过的时间。除此以外,   秒表类使用系统计时器来测量经过的时间。使用   频率 IsHighResolution 字段用于确定精度   和秒表计时实施的解决方案。

答案 1 :(得分:4)

DateTime startingTime = DateTime.UtcNow;

//Your loops go here

DateTime endTime = DateTime.UtcNow;

Timespan timeDifference = endTime - startingTime;

double seconds = timeDifference.TotalSeconds;

如果您需要更精确的

,还有一个Stopwatch类