Is it possible, and is there a code example. On how to make multiple instances of a single thread.
a quick example is just
Thread foo = new Thread(testThread); foo.Start(); // but start more than once instance @Andrew Well, when using a web client to download a page it takes about 0.5 seconds. When I make multiple threads that do the same task (copy and pasting the same thread under different function names and running them simultaneously using a global list and indexer for the for loop. With 4 copy threads it gets a page downloaded at about 0.15 seconds.
3 times faster from 4 threads is nice but I want a more clean solution