.net multithreading study material [closed]
Can any one share some study material for multithreading on .net?
EDIT: I don't want to learn too much details
I'd recommend Joe Duffy's Concurrent Programming On Windows. Also keep up with the PFX team blog.
From Joe Albahari's site
... An extensive article on multithreading in C#. This tackles difficult issues such as thread safety, when to use Abort, Wait Handles vs Wait and Pulse, the implications of Apartment Threading in Windows Forms, using Thread Pooling, Synchronization Contexts, Memory Barriers and non-blocking synchronization constructs.
This one is very useful as on my opinion.
- Jon Skeet has useful a guide.
- There's also a free guide from the C# in a Nutshell book
- Also, the new 3rd ed of C# via CLR by Jeffrey Richter has been updated with several chapters on threading including coverage of Tasks, Parallel LINQ and so on.
- For in depth coverage of Windows threading check Duffy's book as Jon suggests. It is really good.
Google Search:
- http://www.yoda.arachsys.com/csharp/threads/
- http://msdn.microsoft.com/en-us/library/ms973903.aspx
- http://articles.sitepoint.com/article/threading-asp-net
...and a whole lot more. Is there anything specific you are looking for?
精彩评论