Differences in the different ways to make concurrent programs
- by dotnetdev
Hi,
What is the difference between:
Starting a new thread
Using TPL
Using BackgroundWorker
All of these create concurrency but what are the low-level differences between these? Do all 3 make threads anyway?
Thanks