.NET Framework Class Library
Array.IndexOf Method
Returns the index of the first occurrence of a value in a one-dimensional Array or in a portion of the Array.
Array Members
System Namespace
LastIndexOf
Overload List
| Name | Description |
|---|---|
| Array.IndexOf (Array, Object) | Searches for the specified object and returns the index of the first occurrence within the entire one-dimensional Array. |
| Array.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. |
| Array.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. Supported by the .NET Compact Framework. |
| Array.IndexOf (T[], T) | Searches for the specified object and returns the index of the first occurrence within the entire Array. Supported by the .NET Compact Framework. |
| Array.IndexOf (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. Supported by the .NET Compact Framework. |
| Array.IndexOf (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. Supported by the .NET Compact Framework. |
See Also
Reference
Array ClassArray Members
System Namespace
LastIndexOf