标签:read reads 方法 c# dstar new t load thread bsp
c#线程带参数
ThreadStart threadStart = delegate { LoadPicture(ds.Tables[0]); };
Thread thread = new Thread(threadStart);
thread.IsBackground = true;
thread.Start();
LoadPicture(方法带参数)
标签:read reads 方法 c# dstar new t load thread bsp
原文地址:http://www.cnblogs.com/y114113/p/6256004.html