Click or drag to resize

ParserLastIndexOf Method

Searches a StringBuilder for a character in reverse

Namespace:  PDTec.IceNet.Sdk.Utils.CommandLine
Assembly:  PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax
C#
public static int LastIndexOf(
	StringBuilder text,
	char value,
	int startIndex
)

Parameters

text
Type: System.TextStringBuilder
The text to search.
value
Type: SystemChar
The character to search for.
startIndex
Type: SystemInt32
The index to start the search at.

Return Value

Type: Int32
The index of the last occurence of value in text or -1 if it is not found.
See Also