As somewhat of an advanced "newbie" I have read many articles on Multithreading, and am at a loss
Do I need to have a delegate and call the delegate when I am using threading ?
Lets say I have a datatable with 5 million rows and I need to iterate through each row - grab some info , process that info (translate it) and then save it somewhere else. For example insert it inot a completely different database (and maybe even RDBMS - Architectur)
Now I currently for each row - but that takes a lot of time.
I would like to spawn a (Flexible Number of threads) to do the row processing - Will my For each move on as each thread runs. So I start Thread(1) will the next trigger, and I have a new row and can start thread(2) and so on. Also my Subroutine, must