| AbstractLexerRead Method (Int64, Int32) |
[This is preliminary documentation and is subject to change.]
Reads the specified start position in stream. Used by the Token to read the token's value.
Namespace:
Monkeyspeak
Assembly:
Monkeyspeak (in Monkeyspeak.dll) Version: 7.0.10.28723 (7.0.10.28723)
Syntax public abstract char[] Read(
long startPosInStream,
int length
)
Public MustOverride Function Read (
startPosInStream As Long,
length As Integer
) As Char()
public:
virtual array<wchar_t>^ Read(
long long startPosInStream,
int length
) abstract
abstract Read :
startPosInStream : int64 *
length : int -> char[]
Parameters
- startPosInStream
- Type: SystemInt64
The start position in stream. - length
- Type: SystemInt32
The length.
Return Value
Type:
Char[Missing <returns> documentation for "M:Monkeyspeak.AbstractLexer.Read(System.Int64,System.Int32)"]
See Also