.Net
主线程 标签描述

记录一下初接触多线程学到的创建多线程,感觉有点像调用方法,但是不同的是可以同时进行不用排队了,可不是嘛,多线程的作用就是这样啊,哈哈哈哈哈,看看我找的代码 usingSystem; usingSystem.Threading; namespaceMultithreadingApplication { classThreadCreationProgram { staticvoidMain(string[]args) { ThreadStartchildref=newThreadStart(CallToChildThread); Console.WriteLine("Main:创建子线程")...