Table of Contents

Delegate RuntimeTryReadToken

Namespace
Utils.Parser.Runtime
Assembly
Utils.Parser.dll

Represents a function that attempts to read a token at a specific position.

public delegate bool RuntimeTryReadToken(string content, int index, out int length)

Parameters

content string

Source content being tokenized.

index int

Current position in content.

length int

Returned token length when successful.

Returns

bool

true when a token was read; otherwise false.

Extension Methods