Share via


IndexOf Method (Char)

[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 Unicode character in this string.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Function IndexOf ( _
    value As Char _
) As Integer
public int IndexOf(
    char value
)
public:
int IndexOf(
    wchar_t value
)
member IndexOf : 
        value:char -> int 
public function IndexOf(
    value : char
) : int

Parameters

Return Value

Type: System. . :: . .Int32
The zero-based index position of value if that character is found, or -1 if it is not.

Remarks

Index numbering starts from zero.

.NET Framework Security

See Also

Reference

String Class

IndexOf Overload

System Namespace