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, 5394👍, 0💬
Popular Posts:
How do you estimate maintenance project and change requests?
How To Set session.gc_divisor Properly? - PHP Script Tips - Understanding and Using Sessions As you ...
Can static variables be declared in a header file? You can't declare a static variable without defin...
Explain in detail the fundamental of connection pooling? When a connection is opened first time a co...
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...