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)?
 
Back
Top