Threads can be created like other objects in C# using the 'new' keyword.
We can start a thread using Start() method like.
Thread th = new Thread(Write);Thread class is available in System.Threading namespace.
We can start a thread using Start() method like.
th.Start();