vote up 0 vote down star
1

Hello everyone,

My working environment is VSTS 2008 + C# + .Net 3.5. I want to learn the differences between UI thread and worker thread, and any other types of thread (i.e. non-UI thread is the same as worker thread)? I also want to learn the restrictions of what we can do on each type of threads and best practices to avoid any issues.

Appreciate any good tutorials! :-)

thanks in advance, George

flag

41% accept rate

2 Answers

vote up 1 vote down

There's a long, detailed tutorial on threading here.

Specifically, I'd recommend this section on worker and UI threads and how they can interact (it does assume you've read the previous chapters though).

link|flag
vote up 2 vote down

This site has great threading details covering: Getting Started, Basic Synchronization, Using Threads, and Advanced Topics.

link|flag
I know this site, but I did not find related sections which covers differences between UI thread and worker thread. – George2 Jun 20 at 9:39
From the msdn.microsoft.com/en-us/library/… Threading Tutorial, it says: "A process can have a user interface thread that manages interactions with the user and worker threads that perform other tasks while the user interface thread waits for user input". What other differences are you looking for? – SwDevMan81 Jun 23 at 23:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.