How Can we change priority & what levels of priority are provided by Dot Net?

Q

How Can we change priority & what levels of priority are provided by Dot Net?

✍: Guest

A

Thread Priority can be changed by using Threadname.Priority = ThreadPriority.Highest. In the sample provided look out for code where the second thread is ran with a high priority.

Following are different levels of Priority provided by .NET :-
* ThreadPriority.Highest
* ThreadPriority.AboveNormal
* ThreadPriority.Normal
* ThreadPriority.BelowNormal
* ThreadPriority.Lowest

2009-03-13, 7015👍, 0💬