c#多线程总结(纯干货)
摘要:
线程基础 创建线程 static void Main(string[] args) { Thread t = new Thread(PrintNumbers); t.Start();//线程开始执行 PrintNumbers(); Console.ReadKey(); } static void P 阅读全文
posted @ 2018-08-21 13:16 一个大西瓜咚咚咚 阅读(73450) 评论(38) 推荐(129) 编辑