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
Namespace: Lucene.Net.StoreAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
[ObsoleteAttribute("this method operates on old "modified utf8" encoded strings")]
public virtual void SkipChars(
int length
) |
Visual Basic |
---|
<ObsoleteAttribute("this method operates on old "modified utf8" encoded strings")> _
Public Overridable Sub SkipChars ( _
length As Integer _
) |
Visual C++ |
---|
[ObsoleteAttribute(L"this method operates on old "modified utf8" encoded strings")]
public:
virtual void SkipChars(
int length
) |
See Also