This sample demonstrates the following threading techniques. See
Creating, launching, and terminating a thread
Using a thread pool
Thread synchronization and interaction
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
In Solution Explorer, right-click the ThreadStartStop project and click Set as StartUp Project.
On the Debug menu, click Start Without Debugging.
Repeat the preceding steps for ThreadPool, and ThreadSync.
To build and run the Threading samples from the Command Line
Use the Change Directory command to change to the Threads directory.
Type the following:
cd ThreadStartStop csc ThreadStartStop.cs ThreadStartStop
Type the following:
cd ..\ThreadPool csc ThreadPool.cs ThreadPool
Type the following:
cd ..\ThreadSync csc ThreadSync.cs ThreadSync