如何在代码中访问C#性能计数器?

时间:2010-04-26 10:25:27

标签: c# performance performancecounter counter

我想在程序中使用性能计数器输出。如何在不使用perfmon.exe的情况下访问代码中的性能计数器。我想创建自己的性能计数器应用程序。

2 个答案:

答案 0 :(得分:10)

这是通过PerformanceCounter Class公开的。

答案 1 :(得分:5)

您可以通过System.Diagnostics.PerformanceCounter类(Documentation and examples here)与效果计数器完全互动。