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