Is there a comprehensive list of all new concurrent data structures added in .net 4? Or perhaps the list of namespaces like System.Collections.Concurrent?

link|improve this question

I can't give you a list of specifically the concurrent data structures, but there's a good overview of .NET 4.0 changes here: msdn.microsoft.com/en-us/library/ms171868.aspx. And msdn.microsoft.com/en-us/library/ff641764.aspx has a list of all the new types and members. I suspect that most of what you're looking for is in System.Collections.Concurrent and System.Threading.Tasks. – Jim Mischel Mar 9 '11 at 16:44
feedback

2 Answers

up vote 3 down vote accepted

http://msdn.microsoft.com/en-us/library/dd460718.aspx

This is a complete lists for new data structures for parallel programming, that includes:

  • Concurrent Collection Classes
  • Synchronization Primitives
  • Lazy Initialization Classes
  • Aggregate Exceptions
link|improve this answer
thanks! one of these days I'll get better at MSDN searches. – SFun28 Mar 10 '11 at 5:06
feedback

I believe it is just the collections found in System.Collections.Concurrent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.