Searches a StringBuilder for a character in reverse
            
 
Namespace: PDTec.IceNet.Sdk.Utils.CommandLineAssembly: PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 6.0.0.0 (6.0.6225.27214)
 Syntax
Syntaxpublic 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: 
Int32The index of the last occurence of value in text or -1 if it is not found. 
 See Also
See Also