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 need to wrap them into a single object.
Making a custom class to pass in your parameters is one option. You can also use an array or list of objects, and set all of your parameters in that.