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: 6.0.0.0 (6.0.6225.27214)
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