冰楓論壇

標題: [C#] .NET函式取得CPU使用率 [打印本頁]

作者: whitefox    時間: 2023-6-8 12:56
標題: [C#] .NET函式取得CPU使用率
引入命名空間
  1. using System.Diagnostics;
複製代碼
  1. PerformanceCounter CpuCount = new PerformanceCounter("Processor", "% Processor Time", "_Total");
  2. string CpuUsage = $"{Cpu.NextValue():#0.00}%";
  3. MessageBox.Show(CpuUsage);
複製代碼
使用 NextValue() 即可取得CPU使用率,回傳數值是float,6.69 代表使用率 6.69%






歡迎光臨 冰楓論壇 (https://bingfong.com/) Powered by 冰楓