How to use multi threading under for loop
for( j = 0; j < 100; j++) { Thread t1 = new Thread((ThreadStart)ProcessQueue); Thread t2 = new Thread((ThreadStart)ProcessQueue); t1.Start(); j++; t2.Start(); j++; // main thread processes the queue, too! ProcessQueue(); j++; // wait for threads to complete // t1.Join(); // t2.Join(); }
Refer below link.
https://stackoverflow.com/questions/14011411/how-to-use-multi-threading-in-a-for-loop/14011662
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.