MemoryPool<T> Class

Definition

Represents a pool of memory blocks.

generic <typename T>
public ref class MemoryPool abstract : IDisposable
public abstract class MemoryPool<T> : IDisposable
type MemoryPool<'T> = class
    interface IDisposable
Public MustInherit Class MemoryPool(Of T)
Implements IDisposable

Type Parameters

T

The type of the items in the memory pool.

Inheritance
MemoryPool<T>
Implements

Constructors

MemoryPool<T>()

Constructs a new instance of a memory pool.

Properties

MaxBufferSize

Gets the maximum buffer size supported by this pool.

Shared

Gets a singleton instance of a memory pool based on arrays.

Methods

Dispose()

Frees all resources used by the memory pool.

Dispose(Boolean)

Frees the unmanaged resources used by the memory pool and optionally releases the managed resources.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
Rent(Int32)

Returns a memory block capable of holding at least minBufferSize elements of T.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to