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;
        }