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#?

Original source

Related problems