Searches a StringBuilder for a character
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 public 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