Writes a sub sequence of characters from char[] as
the old format (modified UTF-8 encoded bytes).
Namespace: Lucene.Net.StoreAssembly: 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(
char[] s,
int start,
int length
) |
| Visual Basic |
|---|
<ObsoleteAttribute("-- please pre-convert to utf8 bytes instead or use WriteString")> _
Public Overridable Sub WriteChars ( _
s As Char(), _
start As Integer, _
length As Integer _
) |
| Visual C++ |
|---|
[ObsoleteAttribute(L"-- please pre-convert to utf8 bytes instead or use WriteString")]
public:
virtual void WriteChars(
array<wchar_t>^ s,
int start,
int length
) |
See Also