c# 线程的几种实现方式
摘要:
1.匿名线程实时监控,随便写在一个方法内就可以了 new Thread(() => { while (implement) { try { //方法实现处 } } catch { } Thread.Sleep(10); } }) { IsBackground = true }.Start(); 2. 阅读全文
posted @ 2020-07-23 11:27 心影(LM) 阅读(326) 评论(0) 推荐(0) 编辑