|
AsString
|
The AsString property is a read-only property which returns the list of token strings parsed from the stream. Usually, this is the exact strings parsed from the stream. However, if the parser chooses to, the string returned could be a beautified version of the strings. The intent is that the string should be reparsable by the parser to create the exact same list of tokens.
|
|
Value[Integer]
|
The Value property provides access to each token in the list. Use Value to directly access a token in the list. Index identifies each token by its position in the list, where 0 is the first item, 1 is the second item, and so on. The Value property is the default property - this means that the name of the property can be omitted in code, and the subscript applied directly to the interface.
|