Skip Navigation Links.

UnmanagedMemoryStream Constructor ()

Create a new unmanaged memory stream with storage for a certain number of bytes of data. The length of the stream will be set to bytes, but the contents of the stream after initialization are undefined.

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

Syntax

Visual Basic
Public Sub New ( _
	bytes As Long _
)
C#
public UnmanagedMemoryStream(
	long bytes
)
Visual C++
public:
UnmanagedMemoryStream(
	long long bytes
)
JavaScript
HDF5DotNet.UnmanagedMemoryStream = function(bytes);

Parameters

bytes
Type: Int64
The number of bytes in the new stream.

See Also