Create a method that takes no arguments and does not return any data
Create a new ThreadStart delegate and specify the method created in step 1.
Create a Thread object, specifying the ThreadStart object created in step 2.
Call ThreadStart to begin execution of the new thread. The code will look something like this:
using System;
using System.Threading;
public class Program
public static void Main(){
ThreadStart operation = new ThreadStart(SimpleWork);Thread thr = new Thread(operation);thr.Start();
}private static void SimpleWork(){
Console.WriteLine("Thread: {0}", Thread.CurrentThread.ManagedThreadId);
}
IsAlive: Gets a value indicating that the current thread is currently executing
IsBackground: Gets or sets whether the thread runs as a background thread.
IsThreadPoolId: Gets whether this thread is a thread in the thread pool.
ManagedThreadId: Gets a number to identify the current thread.
Name: Gets or sets a name associated with the thread.
Priority: Gets or sets the priority of the thread.
ThreadState: Gets the ThreadState value for the thread.
Read more: Codeproject