2020年4月26日

C#多线程的简单应用

摘要: 1.首先包含头文件 using System.Threading; 2.启动多线程 Thread t1 = new Thread(ThreadFunctionTest); t1.Start(); 3... 阅读全文

posted @ 2020-04-26 10:23 lizhuohui 阅读(6) 评论(0) 推荐(0) 编辑

导航