Sharp Threads
Threading in CSharp
Mostly notes on making responsive GUIs.
Links to web pages on the subject
- Worker Threads in C
-
Looks like a well written demo.
- Newsgroup - Can threads share objects?
-
Makes some points about
locking classes versus methods.
- Multithreaded Webserver with GUI
-
A complete application using
multithreading.
- Adventures in .NET
-
Kral Ferche's blog. Has some notes and pointers
on lots of things to do with C# and .NET.
Topics to investigate
- GetData and SetData
-
AppDomain functions that allow for inter-thread
communication.
- Asynchronous delegates
-
Easy way to execute methods on different
threads.