合并主线最近几年来的主要更新,重点推进TinyHttpClient,替代HttpClient
大石头 authored at 2023-03-08 18:39:12
285.00 B
X_NET20
using System.Collections.Generic;

namespace System.Collections.Concurrent
{
	public interface IProducerConsumerCollection<T> : IEnumerable<T>, ICollection, IEnumerable
	{
		bool TryAdd(T item);

		bool TryTake(out T item);

		T[] ToArray();

		void CopyTo(T[] array, int index);
	}
}