<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />

IArrayPool<T>

public interface IArrayPool<T>
Provides an interface for using pooled arrays.
namespace Newtonsoft.Json { public interface IArrayPool<T> { T[] Rent(int minimumLength); void Return(T[] array); } }