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 do you create thread in.NET?
How do you create thread in.NET?
✍: Guest
1) Import System.Threading
2) Create a new thread using new Thread() and assign the address of the method
3) Use Thread.Start method to start the execution
using System;
using System.Threading;
public class Test
{
static void Main()
{
ThreadStart job = new ThreadStart(ThreadJob);
Thread thread = new Thread(job);
thread.Start();
for (int i=0; i
2014-11-19, 2443👍, 0💬
Popular Posts:
How To Control Horizontal Alignment? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells By...
What invokes a thread's run() method? After a thread is started, via its start() method of the Threa...
Give me the example of SRS and FRS SRS :- Software Requirement Specification BRS :- Basic Requiremen...
Where Do You Download JUnit? Where do I download JUnit? I don't think anyone will ask this question ...
Enable ASP.NET polling using “web.config” file Now that all our database side is configured in order...