I run an external process inside a C# program with the API/method:
Process p = Process.Start(exefilename);
I want to decrease the CPU consumption of the process "exefilename" and I tried to change the priority in this way:
p.PriorityClass = ProcessPriorityClass.Idle;
but I did not get any result. The processor consumption is the same.
In which way can I reduce the CPU consumption?