获取网卡速率,cpu使用率

   static string NetworkName = new PerformanceCounterCategory("Network Interface").GetInstanceNames()[0];//获取网卡名称
        PerformanceCounter NetworkR = new PerformanceCounter("Network Interface", "Bytes Received/sec", NetworkName);//获取网络接收速度
        PerformanceCounter NetworkS = new PerformanceCounter("Network Interface", "Bytes Sent/sec", NetworkName);
        PerformanceCounter cpu = new PerformanceCounter("Processor", "% Processor Time", "_Total");///CPU性能计数器



  toolStripStatusLabel3.Text = "接收:" + (NetworkR.NextValue() / 1024 / 1024).ToString("0.00") + "mb/s  发送:" + (NetworkS.NextValue() / 1024 / 1024).ToString("0.00") + "mb/s";
            toolStripStatusLabel5.Text = "CPU:" + cpu.NextValue().ToString("0") + "%";
原文地址:https://www.cnblogs.com/qc-id-01/p/9922715.html