Possible Duplicate:
thread with multiple parameters
i know how to call a thread with 1 object by using the following code :
Thread t = new Thread(o => { CALL((string)o); });
t.Start(i.ToString());
But what if i want to call a method that takes 3 object parameters ?
How to do that ?
You can just pass the
new object[] { param1, param2, ... , paramN }as an object.