Showing results for March 2010 - .NET Parallel Programming

Mar 27, 2010
0
0

Parent-Child Task Relationships in the .NET Framework 4

Igor Ostrovsky - MSFT
Igor Ostrovsky - MSFT

The Task Parallel Library in the .NET Framework 4 provides an opt-in feature that enables parent-child relationships between tasks.  This relationship brings with it some additional behaviors, including that a parent task is not considered completed until all of its child tasks have completed, and that exceptions from any f...

Task Parallel Library.NET 4Article Summary
Mar 4, 2010
0
0

Parallel Computing Platform Developer Lab

Stephen Toub - MSFT
Stephen Toub - MSFT

Microsoft Developer & Platform Evangelism, in collaboration with the Microsoft Parallel Computing Platform product team, is hosting a developer lab at the Platform Adoption Center on April 12-15, 2010.  This event is for Microsoft Partners and Customers seeking to incorporate either .NET Framework 4 or Visual C++ 2010 parallelism feat...

Mar 2, 2010
0
0

FAQ :: Parallel.ForEach and non-generic collections?

Danny Shih
Danny Shih

.NET 2.0 introduced Generics to allow enhanced code reusability and type safety.  Since then, generic collections (IEnumerable<T>, List<T>, Dictionary<T>, etc.) have become standard and are recommended over their non-generic counterparts (IEnumerable, ArrayList, HashTable, etc.).  As a result, Parallel.ForEach only suppo...

Parallel ExtensionsTask Parallel Library.NET 4