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