views:

113

answers:

5

Can any one share some study material for multithreading on .net?

EDIT: I don't want to learn too much details

+3  A: 
  • 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.
Brian Rasmussen
+1  A: 

Google Search:

...and a whole lot more. Is there anything specific you are looking for?

JasCav
+4  A: 

I'd recommend Joe Duffy's Concurrent Programming On Windows. Also keep up with the PFX team blog.

Jon Skeet
Great book if you want the gory details!
Brian Rasmussen
Joe Duffy's blog is a decent read too though it's not all concurrent stuff http://www.bluebytesoftware.com/blog/Default.aspx
zebrabox
+1 For this book.
Joe Doyle
+2  A: 

This one is very useful as on my opinion.

igor
You beat me! :-)
Pat
I am the first! :)) It is a good post, I know
igor
+3  A: 

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.

Pat