摘要:
程序主题部分摘自msdn中Thread 类的示例说明,地址:http://msdn.microsoft.com/zh-cn/library/System.Threading.Thread(v=vs.110).aspx附改动后的代码:主体代码:static void Main(string[] args) { Console.WriteLine("Main thread: Start a second thread."); List listT = new List(); for (int i = 0; i < 5;... 阅读全文