In Short ,i have three threads under execution,they completed their work 60%,now i want to start a new thread,when i starts it ,it doesnt starts execution,it only starts after the three threads completed 100 %.why this happen? i want to start the fourth one which concurrently goes with with all the three above.
i have four worker threads in my hand ,of these i started 3 threads they are doing a process(transfering files using ftp and changing the GUI).after sometime i want to start the fourth thread which shpuld run parallely with the three threads,but in my case after the three threads gets completed,the fourth thread gets started.i want the fourth thread works parallely with remaining. My code:
for(i=0;i<listview.selcteditems;i++)
{ Starter = delegate { Transfer.UploadFiles(FinalList, "DieboldFiles",Resume); }; //Starter = delegate { SpliceFile(lt); }; SenderThread = new Thread(Starter); SenderThread.IsBackground = true; SenderThread.Start();
}
after sometime i clear the selected items in the listview and insert new items and starts the process again