Method SkipChars
SkipChars(Int32)
Expert
Similar to ReadChars(Char[], Int32, Int32) but does not do any conversion operations on the bytes it is reading in. It still has to invoke ReadByte() just as ReadChars(Char[], Int32, Int32) 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
Declaration
public virtual void SkipChars(int length)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | length | The number of chars to read |