Can you limit the CPU usage on a .NET Process Object?
An application I'm contributing to fires up a component written in C. The C process does some pretty heavy crunching and if your not careful can really hammer your CPU. Is there a way to set a limit to external processes spawned by .NET? I've seen this artivcle on setting a hard memory limit at the OS level, is there a similar thing for CPU? Chris Shain Not in Windows. You can lower the process priority though, which will reduce the likelihood that the problematic process will be scheduled on the CPU and interfere with other (presumably higher priority) applications. For instance, from http:/