摘要: private void ThreadMain(){ Thread thread = new Thread(Subprocess); thread.start(); //主进程继续执行代码 thread.Join();//等待子进程完成 } private void Subprocess(){ // 阅读全文
posted @ 2024-07-02 13:40 以至千里 阅读(16) 评论(0) 推荐(0)