摘要: private void main(){ private delegate void MyInvoke(); Thread th = new Thread(new ThreadStart(selectThread)); th.IsBackground = true; th.Start(); } public void selectThread() { ... 阅读全文
posted @ 2019-06-03 15:49 Int64 阅读(95) 评论(0) 推荐(0) 编辑