IndexOf Method (Char, Int32, Int32)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Reports the zero-based index of the first occurrence of the specified character in this instance. The search starts at a specified character position and examines a specified number of character positions.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System..::..Char
A Unicode character to seek.
- startIndex
- Type: System..::..Int32
The search starting position.
- count
- Type: System..::..Int32
The number of character positions to examine.
Return Value
Type: System..::..Int32The zero-based index position of value if that character is found, or -1 if it is not.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | count or startIndex is negative. -or- startIndex is greater than the length of this string. -or- count is greater than the length of this string minus startIndex. |
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.