如何重置自定义性能计数器
Posted
技术标签:
【中文标题】如何重置自定义性能计数器【英文标题】:How to reset custom Performance Counter 【发布时间】:2012-03-06 14:15:31 【问题描述】:我使用以下代码创建了一个自定义性能计数器:
public class PerfCounter
private PerformanceCounter perfCounter;
PerfCounter(string CategoryName, string CounterName)
perfCounter = new PerformanceCounter(CategoryName, CounterName, false);
perfCounter.BeginInit();
public void IncrementBy(long value)
perfCounter.IncrementBy(value);
public void Reset()
//what should I add here?
一切正常,但我不知道如何重置计数器。谁能帮帮我?
【问题讨论】:
也许这会有所帮助? ***.com/questions/9195851/… 【参考方案1】:这样做:
public void Reset()
perfCounter.RawValue = 0;
【讨论】:
以上是关于如何重置自定义性能计数器的主要内容,如果未能解决你的问题,请参考以下文章