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") + "%";
手拿菜刀砍电线,一路火花带闪电。
高楼大厦平地起,靠谁不如靠自己