Пример #1
0
        protected ScriptThread StartThread(Action action)
        {
            var thread = new ScriptThread(action);

            ThreadPool.Add(thread);
            return(thread);
        }