Bob Lewiston

Bob Lewiston

  • NA
  • 88
  • 0

creating threads

Jul 17 2009 2:11 PM

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)