Click or drag to resize

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; }

Parameters

index
Type: SystemInt32
The index of the token to get.

Property Value

Type: String
The token with the given index
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionThrown 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