私はc#アプリのbackgroundworkerとdoworkの無限ループにいますが、backgroundworkerのCPU使用率は非常に大きくなっています(50%)。backgroundworkerのCPU使用率を制限するにはどうすればよいですか?
コード:
private void ScanWorker_DoWork(object sender, DoWorkEventArgs e)
{
BackgroundWorker worker = sender as BackgroundWorker;
while (!worker.CancellationPending)
{
Process[] Procesy = Process.GetProcesses();
foreach (Process Proces in Procesy)
{
List<BlaclistedProcess> blacklist = (from p in CurrentBlacklist.Processes
where p.ProcessName == Proces.ProcessName
select p).ToList<BlaclistedProcess>();
if (blacklist.Count == 1)
{
Proces.Kill();
}
}
}
}