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 take Object array and pass it in the thread. Pass
System.Threading.ParameterizedThreadStart(yourFunctionAddressWhichContailMultipleParameters)
Into thread constructor.
yourFunctionAddressWhichContailMultipleParameters(object[])
You already set all the value in objArray.
you need to abcThread.Start(objectArray)