Interface IReadOnlyPool<T>.IManagedInterface
Represents the managed interface implemented by its unmanaged counterpart.
public interface IReadOnlyPool<T>.IManagedInterface : IUnmanagedInterface
- Inherited Members
Methods
Bounds(out Pair<Size, Size>)
Retrieves the bounds of the pool.
void Bounds(out Pair<Size, Size> bounds)
Parameters
boundsPair<Size, Size>The output parameter that will contain the bounds of the pool as a pair of sizes.
Get(int)
Gets the element at the specified index from the pool.
T Get(int index)
Parameters
indexintThe index of the element to retrieve.
Returns
- T
The element at the specified index.