ThreadStart中带参数

        Thread Hand1 = new Thread(() =>
        {
            MethodName(参数1, 参数2);
        });
        Hand1.Start();

或者

       Thread Hand1 = new Thread(delegate() { MethodName(参数1,参数2); });
       Hand1.Start();

原文地址:https://www.cnblogs.com/cuihongyu3503319/p/5823384.html