c#线程带参数

c#线程带参数

  

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

                    Thread thread = new Thread(threadStart);

                    thread.IsBackground = true;

                    thread.Start();

 

LoadPicture(方法带参数)

posted @ 2017-01-06 13:34  产卵的鱼  阅读(407)  评论(0编辑  收藏  举报