ValueString.IndexOf Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IndexOf(ValueString) |
Reports the zero-based index of the first occurrence of the specified string in this string. |
IndexOf(Char) |
Reports the zero-based index of the first occurrence of the specified character in this string. |
IndexOf(ValueString)
Reports the zero-based index of the first occurrence of the specified string in this string.
public int IndexOf (Microsoft.Windows.EventTracing.ValueString value);
member this.IndexOf : Microsoft.Windows.EventTracing.ValueString -> int
Public Function IndexOf (value As ValueString) As Integer
Parameters
- value
- ValueString
The string to seek.
Returns
The zero-based index of the first string value
in this string if that string is found;
otherwise, -1.
Applies to
IndexOf(Char)
Reports the zero-based index of the first occurrence of the specified character in this string.
public int IndexOf (char value);
member this.IndexOf : char -> int
Public Function IndexOf (value As Char) As Integer
Parameters
- value
- Char
The character to seek.
Returns
The zero-based index of the first character value
in this string if that character is
found; otherwise, -1.