Threading Sample

This sample demonstrates the following threading techniques. See Threading (C# Programming Guide) for more information.

Security Note

This sample code is provided to illustrate a concept and should not be used in applications or Web sites, as it may not illustrate the safest coding practices. Microsoft assumes no liability for incidental or consequential damages should the sample code be used for purposes other than as intended.

To build and run the Threading samples within Visual Studio

  1. In Solution Explorer, right-click the ThreadStartStop project and click Set as StartUp Project.

  2. On the Debug menu, click Start Without Debugging.

  3. Repeat the preceding steps for ThreadPool, and ThreadSync.

To build and run the Threading samples from the Command Line

  1. Use the Change Directory command to change to the Threads directory.

  2. Type the following:

    cd ThreadStartStop
    csc ThreadStartStop.cs
    ThreadStartStop
  3. Type the following:

    cd ..\ThreadPool
    csc ThreadPool.cs
    ThreadPool
  4. Type the following:

    cd ..\ThreadSync
    csc ThreadSync.cs
    ThreadSync