Apache Lucene.Net 2.4.0 Class Library API

IndexInput.ReadChars Method 

NOTE: This method is now obsolete.

please use ReadString() or ReadBytes() instead


Reads Lucene's old "modified UTF-8" encoded characters into an array.

public virtual void ReadChars(
   char[] buffer,
   int start,
   int length
);

Parameters

buffer
the array to read characters into
start
the offset in the array to start storing characters
length
the number of characters to read

See Also

IndexInput Class | Lucene.Net.Store Namespace |