AGENT.Contrib.Util.ThreadUtil.Start C# (CSharp) 메소드

Start() 공개 정적인 메소드

Starts a new thread with an action
public static Start ( ThreadStart start ) : void
start ThreadStart
리턴 void
        public static void Start(ThreadStart start)
        {
            try
            {
                var t = new Thread(start);
                t.Start();
            }
            catch (Exception ex)
            {
                Debug.Print(ex.ToString());
            }
        }