C# 最简单的线程传递参数的写法

线程方法定义:
public void ThreadDo(string param)
{
}
 
线程方法调用:
Thread thread = new Thread(() => ThreadDo("param1"));
thread.IsBackground = true
 
thread.Start();
原文地址:https://www.cnblogs.com/xiaoyichong/p/11297138.html