Writes a sub sequence of characters from s as the old format (modified UTF-8 encoded bytes).

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

Syntax

C#
[ObsoleteAttribute("-- please pre-convert to utf8 bytes instead or use WriteString")]
public virtual void WriteChars(
	string s,
	int start,
	int length
)
Visual Basic
<ObsoleteAttribute("-- please pre-convert to utf8 bytes instead or use WriteString")> _
Public Overridable Sub WriteChars ( _
	s As String, _
	start As Integer, _
	length As Integer _
)
Visual C++
[ObsoleteAttribute(L"-- please pre-convert to utf8 bytes instead or use WriteString")]
public:
virtual void WriteChars(
	String^ s, 
	int start, 
	int length
)

Parameters

s
Type: System..::..String
the source of the characters
start
Type: System..::..Int32
the first character in the sequence
length
Type: System..::..Int32
the number of characters in the sequence

See Also