<PackageReference Include="System.Buffers" Version="4.5.1" />

ArrayPool<T>

public abstract class ArrayPool<T>
Provides a resource pool that enables reusing instances of type ].
public static ArrayPool<T> Shared { get; }

Gets a shared ArrayPool<T> instance.

protected ArrayPool()

Initializes a new instance of the ArrayPool<T> class.

public static ArrayPool<T> Create()

Creates a new instance of the ArrayPool<T> class.

public static ArrayPool<T> Create(int maxArrayLength, int maxArraysPerBucket)

Creates a new instance of the ArrayPool<T> class using the specifed configuration.

public abstract T[] Rent(int minimumLength)

Retrieves a buffer that is at least the requested length.

public abstract void Return(T[] array, bool clearArray = false)

Returns an array to the pool that was previously obtained using the Rent method on the same ArrayPool<T> instance.