2
Answers

creating threads

Bob Lewiston

Bob Lewiston

15y
2.3k
1

Can someone please break down a simple statement for a relative newbie?
 
Thread firstThread = new Thread (new ThreadStart (Method1));
 
In other words, what is happening at each stage here:
 
new ThreadStart (Method1)
new Thread (new ThreadStart (Method1))
Thread firstThread = new Thread (new ThreadStart (Method1));
 
Thanks for any help you can give.

Answers (2)