我想知道是否存在用于精确时间测量(例如函数的执行时间)的“ .net集成”解决方案?目前,我正在使用Kernel32中的PerformanceCounters。

    [DllImport("Kernel32.dll")]
    private static extern bool QueryPerformanceCounter(
        out long lpPerformanceCount);

    [DllImport("Kernel32.dll")]
    private static extern bool QueryPerformanceFrequency(
        out long lpFrequency);

最佳答案

The Stopwatch是高分辨率框架计时器类(可能包装了该api)。

关于c# - PerformanceCounter的C#替代,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/546014/

10-11 07:26