Apache Lucene.Net 2.4.0 Class Library API

IndexInput.SkipChars Method 

NOTE: This method is now obsolete.

this method operates on old "modified UTF-8" encoded strings


Expert Similar to {@link #ReadChars(char[], int, int)} but does not do any conversion operations on the bytes it is reading in. It still has to invoke {@link #ReadByte()} just as {@link #ReadChars(char[], int, int)} does, but it does not need a buffer to store anything and it does not have to do any of the bitwise operations, since we don't actually care what is in the byte except to determine how many more bytes to read

public virtual void SkipChars(
   int length
);

Parameters

length
The number of chars to read

See Also

IndexInput Class | Lucene.Net.Store Namespace