Skip Navigation Links.

UnmanagedMemoryStream..::..SetLength Method

Set the length of the stream. If the new length of the stream is larger than the old length, the contents of the stream from the old length to the new length are undefined.

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

Syntax

Visual Basic
Public Overrides Sub SetLength ( _
	value As Long _
)
C#
public override void SetLength(
	long value
)
Visual C++
public:
virtual void SetLength(
	long long value
) override
JavaScript
function setLength(value);

Parameters

value
Type: Int64
The new length.

See Also