多线程

专注于多线程的开发与研究

导航

随笔分类 -  C#简单线程系列

摘要:using System;using System.Threading;namespace ConsoleApplication1{ static class Program { static int _count; private const int Max = 1000; static void Main() { ThreadPool.SetMaxThreads(3, 3); for (int i = 0; i < Max; i++) { ... 阅读全文

posted @ 2012-06-03 09:46 threads

联系Email:ha666@ha666.com