Writes an array of bytes.

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

Syntax

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

Parameters

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

See Also