Background thread

In this chapter you will learn:

  1. Test foreground / worker behaviors

Test foreground / worker behaviors

using System;//from  jav  a  2  s  . c o  m
using System.Threading;

class MainClass
{
  static void MyThreadProc()
  {
    Thread.CurrentThread.Name = "TheSecondaryThread";
    Thread secondaryThread = Thread.CurrentThread;
    Console.WriteLine("Name? {0}", secondaryThread.Name);
    Console.WriteLine("Alive? {0}", secondaryThread.IsAlive);
    Console.WriteLine("Priority? {0}", secondaryThread.Priority);      
    Console.WriteLine("State? {0}", secondaryThread.ThreadState);
    Console.WriteLine();

    for(int i = 0; i < 1000; i ++)
    {
      Console.WriteLine("Value of i is: {0}", i);
      Thread.Sleep(5);
    }
  }

  [MTAThread]
  static void Main(string[] args)
  {
    Thread secondaryThread = new Thread(new ThreadStart(MyThreadProc));
    secondaryThread.Priority = ThreadPriority.Highest;
    
    secondaryThread.IsBackground = true;
    secondaryThread.Start();
  }
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. Interupt a sleeping thread
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