Returns the index of the first occurrence.
Returns the index of the first occurrence of the character in the current instance.
[Visual Basic] Overloads Public Function IndexOf(Char) As Integer
[C#] public int IndexOf(char);
[C++] public: int IndexOf(__wchar_t);
[JScript] public function IndexOf(Char) : int;
Returns the index of the first occurrence of the charcter in the current instance.
[Visual Basic] Overloads Public Function IndexOf(Char, Integer) As Integer
[C#] public int IndexOf(char, int);
[C++] public: int IndexOf(__wchar_t, int);
[JScript] public function IndexOf(Char, int) : int;
Returns the index of the first occurrence of the character in the current instance.
[Visual Basic] Overloads Public Function IndexOf(Char, Integer, Integer) As Integer
[C#] public int IndexOf(char, int, int);
[C++] public: int IndexOf(__wchar_t, int, int);
[JScript] public function IndexOf(Char, int, int) : int;
Determines the position within this string of the first occurrence of the specified string.
[Visual Basic] Overloads Public Function IndexOf(String) As Integer
[C#] public int IndexOf(String);
[C++] public: int IndexOf(String*);
[JScript] public function IndexOf(String) : int;
Determines the position within this string of the first occurrence of the specified string.
[Visual Basic] Overloads Public Function IndexOf(String, Integer) As Integer
[C#] public int IndexOf(String, int);
[C++] public: int IndexOf(String*, int);
[JScript] public function IndexOf(String, int) : int;
Determines the position within this string of the first occurrence of the specified string.
[Visual Basic] Overloads Public Function IndexOf(String, Integer, Integer) As Integer
[C#] public int IndexOf(String, int, int);
[C++] public: int IndexOf(String*, int, int);
[JScript] public function IndexOf(String, int, int) : int;
Returns the index of the first occurrence of any character in the character array in the current instance.
[Visual Basic] Overloads Public Function IndexOf(Char()) As Integer
[C#] public int IndexOf(char[]);
[C++] public: int IndexOf(__wchar_t*[]);
[JScript] public function IndexOf(Char[]) : int;
Returns the index of the first occurrence of any character in a character array in the current instance.
[Visual Basic] Overloads Public Function IndexOf(Char(), Integer) As Integer
[C#] public int IndexOf(char[], int);
[C++] public: int IndexOf(__wchar_t*[], int);
[JScript] public function IndexOf(Char[], int) : int;
Returns the index of the first occurrence of any character in value in the current instance.
[Visual Basic] Overloads Public Function IndexOf(Char(), Integer, Integer) As Integer
[C#] public int IndexOf(char[], int, int);
[C++] public: int IndexOf(__wchar_t*[], int, int);
[JScript] public function IndexOf(Char[], int, int) : int;