Hardly.Thread.StartNewThread C# (CSharp) Метод

StartNewThread() публичный статический Метод

public static StartNewThread ( System.Action run ) : Thread
run System.Action
Результат Thread
        public static Thread StartNewThread(Action run)
        {
            Thread t = new Thread(run);
            t.Start();

            return t;
        }