Click or drag to resize

RawRecord(Byte, Int32, Int32) Constructor

Initializes a new instance of the RawRecord class.

Namespace: Ookii.Jumbo.IO
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public RawRecord(
	byte[] buffer,
	int offset,
	int count
)

Parameters

buffer  Byte
The buffer containing the record.
offset  Int32
The offset in buffer at which the record starts.
count  Int32
The number of bytes in buffer for the record.
Remarks

The value of buffer will be stored in this instance and returned by the Buffer property. Any changes made to the contents of the buffer after calling Reset(Byte, Int32, Int32) will be reflected in this instance.

Note  Note
Calling the Read(BinaryReader) method may overwrite the contents of the current buffer at offset zero, or allocate a new one if that buffer is not big enough.
See Also