摘要: 线程基础 创建线程 static void Main(string[] args) { Thread t = new Thread(PrintNumbers); t.Start();//线程开始执行 PrintNumbers(); Console.ReadKey(); } static void P 阅读全文
posted @ 2020-05-19 13:54 pilink 阅读(544) 评论(0) 推荐(0) 编辑