用于测量代码在visual studio 2010 ide中运行所用时间的工具

时间:2015-04-02 06:03:12

标签: c# visual-studio-2010

是否有任何工具可用于衡量在Visual Studio 2010中执行函数或部分代码的时间。

感谢您的帮助

1 个答案:

答案 0 :(得分:2)

您不需要工具,而是可以使用System.Diagnostics.Stopwatch

  

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

     

秒表通过计算计时器滴答来测量经过的时间   基础计时器机制。如果安装了硬件并运行   系统支持高分辨率性能计数器,然后   秒表类使用该计数器来测量经过的时间。

示例:

using System;
using System.Diagnostics;
using System.Threading;
class Program
{
    static void Main(string[] args)
    {
        Stopwatch stopWatch = new Stopwatch();
        stopWatch.Start();
        Thread.Sleep(10000);
        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);
    }
}