I wrote a .NET app that spawns a thread that loops endlessly as it checks to make sure that some conditions are true. Task Manager reveals that the moment this thread is spawned, the application uses almost all the CPU resources available, for as long as the thread runs, which is the lifetime of the application.
How can this thread be prevented from using so much CPU resources?