I have a Windows Service in C#. I want a certain thread to perform specific actions, but only when the CPU is idle. Is there a way to do this in C#.
|
|
|
|
|
|
|
You can let the OS handle it for you like this:
|
||
|
|
|
|
Try setting ThreadPriority to BelowNormal or less. See MSDN. |
||
|
|
