views:

48

answers:

3

Can anyone recommend any resources on the .NET threading API? I've used a few of the basic features, but I'd like to get more familiar with the more obscure parts.

+1  A: 

The guide found here has been extremely helpful to myself and many others... is this the sort of information you're looking for?

Also, MSDN's overview of the System.Threading namespace is about as comprehensive as you can get.

Donut
+2  A: 

This is a pretty decent resource...

Jason Punyon
You can't beat Albahari's book. Start with his examples and build yourself some prototypes - no better way to learn!
ebpower
+1  A: 

Concurrent Programming on Windows by Joe Duffy -- everything you will ever need to know and more.

zvolkov