Skip Navigation Links.

UnmanagedMemoryStream..::..Reserve Method

Reserve a certain amount of space in the buffer, to minimize the need for reallocations if you already know how much space will be needed.

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Sub Reserve ( _
	value As Long _
)
C#
public void Reserve(
	long value
)
Visual C++
public:
void Reserve(
	long long value
)
JavaScript
function reserve(value);

Parameters

value
Type: Int64
The number of bytes to reserve.

See Also