We have a n number of task whic is running sequentially now. We want to convert this to a parallel concurrent task. There are multiple ways to acieve this. Lets see few of those here. Sequential task example To parallelize this, we could just turn every single download into a separate Task with Task.Run and wait for them all […]