StringIndexOfAny Method (Char, Int32, Int32) |
Reports the zero-based index of the first occurrence in this instance of any character in a specified array of Unicode characters. The search starts at a specified character position and examines a specified number of character positions.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public int IndexOfAny(
char[] anyOf,
int startIndex,
int count
)
Parameters
- anyOf
- Type: SystemChar
A Unicode character array containing one or more characters to seek. - startIndex
- Type: SystemInt32
The search starting position. - count
- Type: SystemInt32
The number of character positions to examine.
Return Value
Type:
Int32The zero-based index position of the first occurrence in this instance where any character in
anyOf was found; -1 if no character in
anyOf was found.
Exceptions Exception | Condition |
---|
ArgumentNullException | anyOf is null. |
ArgumentOutOfRangeException | count or startIndex is negative.-or- count + startIndex is greater than the number of characters in this instance. |
See Also