c# – 如何重置自定义性能计数器

前端之家收集整理的这篇文章主要介绍了c# – 如何重置自定义性能计数器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经使用以下代码创建了一个自定义性能计数器:
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?
    }
}

一切都很好,但我不知道如何重置柜台.有人可以帮我吗

解决方法

做这个:
public void Reset()
{
    perfCounter.RawValue = 0;
}
原文链接:https://www.f2er.com/csharp/93665.html

猜你在找的C#相关文章