Thread attribute

In this chapter you will learn:

  1. How to get the thread attribute

Thread attribute

using System;/*j av a  2s.  co  m*/
using System.Threading;

class MainClass
{
  // [MTAThread]
  [STAThread]
  static void Main(string[] args)
  {
    Thread primaryThread = Thread.CurrentThread;

    primaryThread.Name = "ThePrimaryThread";

    Console.WriteLine("Thread Name: {0}", primaryThread.Name);
    Console.WriteLine("Alive: {0}", primaryThread.IsAlive);
    Console.WriteLine("Priority Level: {0}", primaryThread.Priority);      
    Console.WriteLine("Thread State: {0}", primaryThread.ThreadState);
  }
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. How to find out Thread priorities
  2. User Thread: Name, ApartmentState, IsAlive, Priority, ThreadState
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