Writes an array of bytes.

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

Syntax

C#
public override void WriteBytes(
	byte[] b,
	int offset,
	int length
)
Visual Basic
Public Overrides 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
) override

Parameters

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

[Missing <param name="offset"/> documentation for "M:Lucene.Net.Store.BufferedIndexOutput.WriteBytes(System.Byte[],System.Int32,System.Int32)"]

length
Type: System..::..Int32
the number of bytes to write

See Also