Searches a StringBuilder for a character
            
 
Namespace: PDTec.IceNet.Sdk.Utils.CommandLineAssembly: PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 6.0.0.0 (6.0.6225.27214)
Syntaxpublic static int IndexOf(
	StringBuilder text,
	char value,
	int startIndex
)
Parameters
- text
 - Type: System.TextStringBuilder
 The text to search.  - value
 - Type: SystemChar
 The character value to search for.  - startIndex
 - Type: SystemInt32
 The index to stat searching at.  
Return Value
Type: 
Int32 The index of the first occurence of value or -1 if it is not found. 
See Also