Returns the index of the first occurrence of a value in a one-dimensional Array or in a portion of the Array.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List
|
| Name | Description |
|---|
.gif) .gif) | IndexOf<(Of <(T>)>)(array<T>[]()[], T) | Searches for the specified object and returns the index of the first occurrence within the entire Array. |
.gif) .gif) | IndexOf(Array, Object) | Searches for the specified object and returns the index of the first occurrence within the entire one-dimensional Array. |
.gif) .gif) | IndexOf<(Of <(T>)>)(array<T>[]()[], T, Int32) | Searches for the specified object and returns the index of the first occurrence within the range of elements in the Array that extends from the specified index to the last element. |
.gif) .gif) | IndexOf(Array, Object, Int32) | Searches for the specified object and returns the index of the first occurrence within the range of elements in the one-dimensional Array that extends from the specified index to the last element. |
.gif) .gif) | IndexOf<(Of <(T>)>)(array<T>[]()[], T, Int32, Int32) | Searches for the specified object and returns the index of the first occurrence within the range of elements in the Array that starts at the specified index and contains the specified number of elements. |
.gif) .gif) | IndexOf(Array, Object, Int32, Int32) | Searches for the specified object and returns the index of the first occurrence within the range of elements in the one-dimensional Array that starts at the specified index and contains the specified number of elements. |
Top

See Also