Threading Objects and Features
Silverlight
The .NET Framework provides a number of objects that help you create and manage multithreaded applications. Managed threads are represented by the Thread class. The ThreadPool class provides easy creation and management of multithreaded background tasks. The BackgroundWorker class does the same for tasks that interact with the user interface. The Timer class executes background tasks at timed intervals.
In addition, there are a number of classes that synchronize activities of threads, including Monitor, Interlocked, and the classes derived from EventWaitHandle. The features of these classes are compared in Synchronization Primitives.