Simple threading

  • Thread starter Thread starter nondos
  • Start date Start date
Huh ??? don`t understand exacly what you mean , but i give it a shot :-)


if you mean how can i run six times the same routine at the same time

well this is physicly impossible , as you always need a synchronous routine
that starts the 6 threads so one is always started after the other
however this doesn`t necesarly mean that they are ended in this order :-)

Okay having said that : you can start six times a method asynchronous ( as
that is proably is what you really want )
by using asynchronous delegates , or by using a thread object


http://msdn2.microsoft.com/en-us/library/22t547yb.aspx

http://msdn2.microsoft.com/en-us/library/system.threading.aspx
 
Back
Top