Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[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 string in this instance. The search starts at a specified character position.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Function IndexOf ( _
value As String, _
startIndex As Integer _
) As Integer
public int IndexOf(
string value,
int startIndex
)
public:
int IndexOf(
String^ value,
int startIndex
)
member IndexOf :
value:string *
startIndex:int -> int
public function IndexOf(
value : String,
startIndex : int
) : int
Parameters
- value
Type: System. . :: . .String
The string to seek.
- startIndex
Type: System. . :: . .Int32
The search starting position.
Return Value
Type: System. . :: . .Int32
The zero-based index position of value if that string is found, or -1 if it is not. If value is String..::..Empty, the return value is startIndex.
Remarks
Index numbering starts from 0. The startIndex parameter can range from 0 to the length of the string instance. If startIndex equals the length of the string instance, the method returns -1.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.