Writes an array of bytes.

Namespace: Lucene.Net.Store
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public abstract void WriteBytes(
	byte[] b,
	int offset,
	int length
)
Visual Basic
Public MustOverride Sub WriteBytes ( _
	b As Byte(), _
	offset As Integer, _
	length As Integer _
)
Visual C++
public:
virtual void WriteBytes(
	array<unsigned char>^ b, 
	int offset, 
	int length
) abstract

Parameters

b
Type: array<System..::..Byte>[]()[][]
the bytes to write
offset
Type: System..::..Int32
the offset in the byte array
length
Type: System..::..Int32
the number of bytes to write

See Also