protected System.bool ReadTo( System.char stopChar, System.char escapeChar, out System.string result )
Parameters
- stopChar
- The char at which to stop reading.
- escapeChar
- If this char is met, the next char will be read and included directly no matter what it is.
- result
- The string token that was read, no matter whether a stop char was met or the parser has reached its end position.
Return Value
True if there are more chars to read or false if the parser has reached its end position.