v10.10.2024.0701 使用IJsonHost改进Json序列化
大石头 编写于 2024-07-01 08:36:34 大石头 提交于 2024-07-01 08:48:33
X
using System.Collections.Generic;

namespace System.Threading.Tasks;

public interface IConcurrentDeque<T>
{
	void PushBottom(T obj);

	PopResult PopBottom(out T obj);

	PopResult PopTop(out T obj);

	IEnumerable<T> GetEnumerable();
}