views:

1261

answers:

7

I am asking about a good reference for multithreading programming in terms of concepts with good examples using C++/C#?

+8  A: 
Anonymous
+4  A: 

http://www.albahari.com/threading/

Free threading book by Joseph Albahari..

PS: There are also Chinese, Czech, Persian, Russian translations on the site..

dincer80
+1  A: 

I bought the vb.net version of this book C# Threading Handbook (Paperback) from amazon, which has all the reference i need.

Pondidum
+1  A: 

The MSDN Library, while verbose, details most the information you'll need and has links to a bunch of tutorials - article.

Kieron
+1  A: 

The Little Book of Semaphores is a free, online introductory textbook. Example code is all in Python.

Dan Olson
+6  A: 

I recommend Joe Duffy's new book on concurrency on Windows. He covers both the Win32 API and the .NET framework. Excellent reading.

Jakob Christensen