Make a thread to sleep

In this chapter you will learn:

  1. Foreground Thread Sleep

Foreground Thread Sleep

using System;/* j  a  v a  2 s .  com*/
using System.Threading;

public class MainClass
{
    private static void MyFunction() {
        Thread.Sleep( 5000 );
        Console.WriteLine( "Exiting extra thread" );
    }

    static void Main() {
        Thread thread1 = new Thread( new ThreadStart(MyFunction) );

        thread1.Start();

        Console.WriteLine( "Exiting main thread" );
    }
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. Use Join() to wait for threads to end
Home » C# Tutorial » Thread
Thread creation
ThreadStart
Make a thread to sleep
Join thread
Thread attribute
Thread priorities
Thread State
Background thread
Thread interupting
Monitor
Mutex