C#线程执行带参数的方法

            Thread th = new Thread(() => send_File(path, key, tofrom, identity));
            th.IsBackground = true;
            th.Start();
原文地址:https://www.cnblogs.com/qq1223558/p/3078332.html