//移除線程 static public void RemoveLoop(LoopThread loop) { CurrentLoops.Remove(loop); }
//增加線程 static public void AddLoop(string[] code) { LoopThread loop = new LoopThread(code); CurrentLoops.Add(loop); }