Asynchronous Delegates Vs Thread/ThreadPool?
Posted
by claws
on Stack Overflow
See other posts from Stack Overflow
or by claws
Published on 2009-12-03T06:03:57Z
Indexed on
2010/03/18
11:31 UTC
Read the original article
Hit count: 277
Hello,
I need to execute 3 parallel tasks and after completion of each task they should call the same function which prints out the results.
I don't understand in .net why we have Asychronous calling (delegate.BeginInvoke() & delegate.EndInvoke()) as well as Thread class?
I'm little confused which one to use when? Now in this particular case, what should I use Asychronous calling or Thread class?
I'm using C#.
© Stack Overflow or respective owner