我正在使用下面的代码从线程函数调用一个方法。它不起作用。请帮我这样做。
DataTable dt = get_data(Convert.ToInt32(Start_From), Convert.ToInt32(End_To));
foreach (DataRow dr in dt.Rows)
{
ThreadStart newThread = new ThreadStart(delegate { insert_Data(dr); });
Thread myThread = new Thread(newThread);
}
public static DataTable get_Data(int form,int to)
{
.....
return Dt;
}
[MTAThread]
public static string insert_Data(DataRow dr)
{
.....SOme code here //This funcion not call
}