Does anyone know how to pass multiple parameters into a Thread.Start routine?
I thought of extending the class, but the C# Thread class is sealed.
Here is wh
You can't. Create an object that contain params you need, and pass is it. In the thread function cast the object back to its type.