摘要:
//AsyncQueue.cs//#define c4 //C# 4.0+#define c4namespace Microshaoft{ using System; using System.Threading; using System.Diagnostics; using System.Collections.Generic;#if c4 using System.Collections.Concurrent;#endif using Microshaoft; public class ConcurrentAsyncQueue<T> where T : class { pub 阅读全文