up vote 18 down vote favorite
12
share [g+] share [fb]

Can anyone direct me to a good C# (or general) threading tutorial/article/blog?

Im being asked to design a multi threaded application and I suddenly realised, that I don't really know anything about

link|improve this question

feedback

11 Answers

up vote 23 down vote accepted

Try this Good basic overview in C#

link|improve this answer
albahari also have a Persian Translation and I like that. – mammadalius yesterday
feedback

I have a tutorial on my site, and as previously mentioned Joe Albahari (co-author of C# 3.0 in a Nutshell) has a good one on his site too.

Joe Duffy's blog is the most interesting one I've read on concurrency (and other topics). His new book, Concurrent Programming on Windows, is out very soon. I've read a pre-release version, and it's cracking - but definitely more for in-depth knowledge than a brief overview.

EDIT: There's also the Parallel Extensions team blog.

link|improve this answer
feedback

There is a very good series on CodeProject by Sasha Barber: Beginners Guide To Threading In .NET Part 1 of n

link|improve this answer
feedback

Sacha (a CodeProject MVP) has a excellent series available on CodeProject...

link|improve this answer
Ermm, I said that already, an hour back... – leppie Oct 7 '08 at 8:36
Sorry... Did not see it... I up voted your sugestion! – rudigrobler Oct 7 '08 at 12:33
Thanks :) It seems you missed 1 link though ;p (4) – leppie Oct 7 '08 at 15:45
feedback

I recommend picking up a copy of Jeff Richter's CLR via C#, it has some great insight regarding multi-threading and async programming.

link|improve this answer
feedback

This is the first article I ever read about threading. I still refer to it now and then.

It covers the big topics; where when and how.

http://www.yoda.arachsys.com/csharp/threads/

link|improve this answer
feedback

InformIT is one of the sites I'd like to visit to get beginner grasp on topics

link|improve this answer
feedback

Given your admitted inexperience with multi-threading I'd take a look at any multi-threading frameworks that you can leverage rather than rolling your own.

link|improve this answer
feedback

The .NET Framework's New SynchronizationContext Class by Leslie Sanford

This is helpful when it comes to components that will be used with a From and doing things in the background using a thread and notifying the GUI via events. Basically this is how the BackgroundWorker is doing its magical synchronization of events fired from a different thread.

link|improve this answer
feedback

Joseph Albahari's site really is one of the better collections of multithreading programming in the .NET Framework.

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.