SourceReader.Advance Method
Overloads
| Name | Description |
|---|---|
Advance() |
Advances the reader one character. Does nothing if the reader is at the end of the file. |
Advance(Int32) |
Advances the reader the specified number of characters, stopping at the end of the file if it is reached first. |
Advance()
Advances the reader one character. Does nothing if the reader is at the end of the file.
public void Advance();
Advance(Int32)
Advances the reader the specified number of characters, stopping at the end of the file if it is reached first.
public void Advance(int count);
Parameters
| Name | Type | Description |
|---|---|---|
count |
Int32 |
The number of characters to advance. |