Tag: Development

Community

Parallel ForEach Loop

The third part of the Parallel Programming in .NET tutorial examines the parallel ForEach loop. This iterates through the items in a collection, executing the same code for each with the potential for the data to be decomposed and processed in parallel.

Community

General Event Handling in .NET

(Zoran Horvat) This article continues the analysis by posing a very high goal – attempting to subscribe handlers to events which are completely unknown at compile time. As will be shown, CLR does not support such intentions and specific approach must be employed to solve the problem.