Thread C# Tutorial

using System; 
using System.Threading; 
 
class MainClass { 
  public static void Main() { 
    Thread thrd = Thread.CurrentThread; 
 
    Console.WriteLine("Priority: " + thrd.Priority); 
 
  } 
}
Priority: Normal