要想传参数,你应该写个线程类,例如:
public class clsthread
{
    public string m1;
    //define your parameter    public void sendData()
    {
      //Disposing
    } 
}clsthread myTest=new clsthread();
myTest.m="test";//Init your thread's parameter
Thread myThread=new Thread(new ThreadStart(myTest.sendData));
myThread.Start();