Creating Threads : Thread Creation « Thread « C# / C Sharp






Creating Threads

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 * Version: 1
 */
using System;
using System.Threading;

namespace Client.Chapter_15___Threading
{
  public class CreatingThreads
  {
    static void Main(string[] args)
    {
      Thread MyNewThread = new Thread(new ThreadStart(ThreadProc));

      MyNewThread.Start();
      MyNewThread.Join();
    }
    protected static void ThreadProc()
    {
      for (int i = 0; i < 100; i++)
      {
        Console.WriteLine(i);
      }
    }
  }
}

           
       








Related examples in the same category

1.My Threading Start
2.illustrates the creation of threadsillustrates the creation of threads
3.illustrates the use of thread-local storageillustrates the use of thread-local storage
4.shows the Thread.Join method in actionshows the Thread.Join method in action
5.Create a thread of executionCreate a thread of execution
6.An alternate way to start a threadAn alternate way to start a thread
7.Create multiple threads of executionCreate multiple threads of execution
8.Suspending, resuming, and stopping a threadSuspending, resuming, and stopping a thread