Blog

Output of following code:

class Program {
static void Main(string[] args) {
ThreadStart ts = new ThreadStart(() => { Console.WriteLine(“Thread is running”); });
Thread thread1 = new Thread(ts);
thread1.Start();
}
}