Hardly.Thread.StartNewThread C# (CSharp) Méthode

StartNewThread() public static méthode

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

            return t;
        }