Threading in C#

Posted by Lalit Dhake on Stack Overflow See other posts from Stack Overflow or by Lalit Dhake
Published on 2010-03-12T05:39:17Z Indexed on 2010/03/12 5:47 UTC
Read the original article Hit count: 389

Filed under:

Hi, I have console application. In that i have some process that fetch the data from database through different layers ( business and Data access). and generate outputs. This process will execute many times say 10 times. Ok? I want to run simultaneously this process. not one will start, it will finish and then second will start. I want after starting 1'st process, just 2'nd , 3rd....10'th must be start. Means it should be multithreading. how can i achieve this ? is that will give me error while connection with data base open and close ?

© Stack Overflow or respective owner

Related posts about multithreading