i try to understand the difference between Tasks and Backgroundworker respectively the using of it.
question 1: what is the difference? it is better management of system-resources? excepting the different syntax.
question2: in a backgroundWorker i can wait inside for a event or its end before jump back (While (bw.isbusy && !bw.CancellationPending)). How to do this in a Task?
question 3: BW.supportscancelation = true. How to do this in a Task?
I lack the perspective here ;-(
Thanks for your support!
Chris