Posts tagged with "Threading"

The advantage of threading is the ability to create applications that use more than one thread of execution. For example, 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.

C# Threading: COM Apartment Model

September 13, 2010 by Christoff Truter

a simple description on how the COM Threading model works

C#   Threading  

C# Threading: Mutual exclusion (via Monitor Class)

August 6, 2010 by Christoff Truter

How to prevent that threads access shared resources concurrently via Monitor.

C#   Threading  

C# Threading: Mutual exclusion (via Mutex Class)

August 3, 2010 by Christoff Truter - 2 Comments

How to prevent that threads access shared resources concurrently via Mutex.

C#   Threading  

C# Threading: BackgroundWorker

March 20, 2010 by Christoff Truter

How to make a more responsive UI using background threads

C#   Threading