You can also introduce a slow Sleep into the main loop that's pegging the processor.
For example, this is often done by game loops - calling Thread.CurrentThread.Sleep(1); once per frame will take most games from using 100% cpu to using 1-2% cpu, and still allow reasonable access.
----- Edit ------
There are potential advantages of sleeping over lowering priority of the process or thread. The main two are:
- Sleeping lets you have more control over how much processor time you give up. If you lower your priority, and there are other CPU hungry processes, you may give up more processor time than you want. [This is why I didn't do Sleep(0), either - since that won't always give up processor time, although it does give up some. I've done this in embedded systems with longer sleeps to force less processor usage.]
- If your goal is to drop your total CPU usage, lowering your process priority won't help if nothing else is running. You'll still eat 100% CPU. This might potentially be useful if you're trying to keep your power draw down (save energy costs), or trying to keep your heat generation lower, depending on the architecture of your system.
----- From original -----
For other styles (UI) apps, another option is to refactor your routine to be asyncronous, break your processing into sections, and process it in blocks in a call by subscribing to something like Application.OnApplicationIdle. This can allow your UI to stay somewhat responsive, since it'll run in spurts.
If this is a math routine, and it's doing a lot of computations, then reducing the thread priority and allowing it to use the most CPU available might be better.