摘要: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
浙公网安备 33010602011771号