Thread pool thread priority

  • Thread starter Thread starter Joel Lyons
  • Start date Start date
J

Joel Lyons

If my code is running on a thread from the process's thread pool and I
change a property of the thread with a call like
System.Threading.Thread.CurrentThread.Priority =
System.Threading.ThreadPriority.BelowNormal;

Will that thread pool thread be set to that priority forever or does .NET
reset the priority back to Normal when the thread rejoins the pool (when I'm
done with it)?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top