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, 4976👍, 0💬
Popular Posts:
Are risk constant through out the project ? * Never say that risk is high through out the project. R...
Why does malloc(0) return valid memory address? What's the use? malloc(0) does not return a non-NULL...
Can static variables be declared in a header file? You can't declare a static variable without defin...
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...
What is DAR (Decision Analysis and Resolution) ? Decision Analysis and Resolution is to analyze poss...