gpt4 book ai didi

c# - 最简单的性能计数器示例

转载 作者:可可西里 更新时间:2023-11-01 08:00:50 26 4
gpt4 key购买 nike

启动和运行性能计数器所需的最少 C# 代码量是多少?

我只想测量代码中两点之间的 CPU 周期数和/或时间。我已经浏览了网络上所有的华夫饼,但似乎比这样一个微不足道的任务所需的代码要多得多。我只想快速启动并运行测量,并更加专注于我正在做的事情。

最佳答案

我认为您不需要性能计数器。您需要的时间不只是可以从 StopWatch 获得的时间吗? ?它非常准确。

Stopwatch watch = Stopwatch.StartNew();

// Do work

watch.Stop();
// elapsed time is in watch.Elapsed

但是,要回答你实际提出的问题:如果你只是想查询现有的计数器,其实很简单。这是一个完整的例子:

using System;
using System.Diagnostics;
using System.Linq;

static class Test
{
static void Main()
{
var processorCategory = PerformanceCounterCategory.GetCategories()
.FirstOrDefault(cat => cat.CategoryName == "Processor");
var countersInCategory = processorCategory.GetCounters("_Total");

DisplayCounter(countersInCategory.First(cnt => cnt.CounterName == "% Processor Time"));
}

private static void DisplayCounter(PerformanceCounter performanceCounter)
{
while (!Console.KeyAvailable)
{
Console.WriteLine("{0}\t{1} = {2}",
performanceCounter.CategoryName, performanceCounter.CounterName, performanceCounter.NextValue());
System.Threading.Thread.Sleep(1000);
}
}
}

当然,该进程需要适当的权限才能访问您需要的性能计数器。

关于c# - 最简单的性能计数器示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3896685/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com