Hello I was wondering how people make loops threaded for example
for(int i = 0; i<10; i++)
{
Console.WriteLine(i);
}
Is it possible to have one thread for every loop? so, Thread 1: 0 Thread 2: 1 Thread 3: 2 ect..
and if so, how would I cap the threads ?