↧
C# Parallelism: Executing Methods in Parallel in .NET 3.5
To fully take advantage of multi-core processors and to speed up response times, developers have to embrace parallel design patterns. Most of the code we write today is in serial; we execute one...
View ArticleParallel ForEach Loop in C# 3.5
You can take advantage of multi-core processors and execute foreach loops in parallel. This works especially well when getting multiple chunks of data from external data sources such as a database,...
View Article