StringTokenizerItem Property |
Gets the token with the specified index from the tokenizer without moving the current position index.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public string this[
int index
] { get; }
Public ReadOnly Default Property Item (
index As Integer
) As String
Get
Parameters
- index
- Type: SystemInt32
The index of the token to get.
Property Value
Type:
StringThe token with the given index
Exceptions Exception | Condition |
---|
IndexOutOfRangeException | Thrown when trying to get a token which doesn't exist, that is when index is equal or greater then Count or index is negative. |
See Also