Skip Navigation Links.

UnmanagedMemoryStream..::..Write Method

Write data into unmanaged memory. If the write would continue past the end of the memory stream, the memory stream is expanded.

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

Syntax

Visual Basic
Public Overrides Sub Write ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
)
C#
public override void Write(
	byte[] buffer,
	int offset,
	int count
)
Visual C++
public:
virtual void Write(
	array<unsigned char>^ buffer, 
	int offset, 
	int count
) override
JavaScript
function write(buffer, offset, count);

Parameters

buffer
Type: array<Byte>[]()[][]
The buffer containing the data to write.
offset
Type: Int32
The position in the buffer from which data should be read.
count
Type: Int32
The number of bytes to write to the stream.

See Also