加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-15 03:48:10 所属栏目:百科 来源:网络整理
导读:我已经使用以下代码创建了一个自定义的性能计数器: public class PerfCounter{ private PerformanceCounter perfCounter; PerfCounter(string CategoryName,string CounterName) { perfCounter = new PerformanceCounter(CategoryName,CounterName,false);
我已经使用以下代码创建了一个自定义的性能计数器:
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;
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读