Hardly.Thread.StartNewThread C# (CSharp) Method

StartNewThread() public static method

public static StartNewThread ( System.Action run ) : Thread
run System.Action
return Thread
        public static Thread StartNewThread(Action run)
        {
            Thread t = new Thread(run);
            t.Start();

            return t;
        }