Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How can we change priority and what the levels of priority are
How can we change priority and what the levels of priority are provided by .NET ?
✍: Guest
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
2007-10-22, 5207👍, 0💬
Popular Posts:
What is the method to customize columns in DataGrid? Use the template column.
What is the FP per day in your current company?
Where Is the Submitted Form Data Stored? - PHP Script Tips - Processing Web Forms When a user submit...
What are the core functionalities in XML .NET framework? Can you explain in detail those functionali...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...