我如何知道在我的代码中使用某个例程的 CPU 处理量。这可能吗?我可以将其用作我的程序...使用:
CpuUsage _cu = new CpuUsage();
cpuCounter = new PerformanceCounter();
cpuCounter.CategoryName = "Processor";
cpuCounter.CounterName = "% Processor Time";
cpuCounter.InstanceName = "_total";
string cpuUsage = _cu.GetUsage();
但是有什么方法可以只获得一个特定的例程吗?