ThreadStart with parameters
c#, multithreading
Solution
Yep :
Thread t = new Thread (new ParameterizedThreadStart(myMethod));
t.Start (myParameterObject);
Problem
How do you start a thread with parameters in C#?
c#, multithreading
Yep :
Thread t = new Thread (new ParameterizedThreadStart(myMethod));
t.Start (myParameterObject);
How do you start a thread with parameters in C#?