I\'m writing a downloader in C# and stopped at the following problem: what kind of method should I use to parallelize my downloads and update my GUI?
In my first att
I think you should look into using the Task Parallel Library, which is new in .NET 4 and is designed for solving these types of problems