Interface IArrayPoolProvider
An object which can get ArrayPool<T> instances for an arbitrary type.
Declaration
public interface IArrayPoolProvider
        
        
        
            Methods
GetArrayPool<T>()
Gets an ArrayPool<T> instance for elements of type T.
Declaration
ArrayPool<T> GetArrayPool<T>()
        
                        Returns
| Type | Description | 
|---|---|
ArrayPool<T>  | 
                                    An ArrayPool<T> instance for elements of type   | 
                                
Type Parameters
| Name | Description | 
|---|---|
T  | 
                                    The type of elements in the array pool.  |