This is going to be a very short article outlining threading aka multi tasking in computer world… SIMPLIFIED!!!!
Here it goes…
Snippet
using System.Threading;
new Thread(() =>
{
Thread.CurrentThread.IsBackground = true;
/* Your code here */
Console.WriteLine("Hello You");
}).Start();
Have a nice day!!!