c# create new thread

C#
using System.Threading;

Thread thread = new Thread(new ThreadStart(WorkThreadFunction));
thread.Start();


Source

Also in C#: