c#线程带参数

c#线程带参数

  

       ThreadStart threadStart = delegate { LoadPicture(ds.Tables[0]); };

                    Thread thread = new Thread(threadStart);

                    thread.IsBackground = true;

                    thread.Start();

LoadPicture(方法带参数)

原文地址:https://www.cnblogs.com/y114113/p/6256004.html