MemoryPool<T>
namespace System.Buffers
{
public abstract class MemoryPool<T> : IDisposable
{
private static readonly MemoryPool<T> = new System.Buffers.ArrayMemoryPool<T>();
public static MemoryPool<T> => s_shared;
public abstract int MaxBufferSize { get; }
public abstract IMemoryOwner<T> Rent(int minBufferSize = -1);
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected abstract void Dispose(bool disposing);
}
}