|
MatrixIndexOfT Method
|
Searches for the specified value and returns the index of the first occurrence within the array.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static int IndexOf<T>(
this T[] data,
T value
)
<ExtensionAttribute>
Public Shared Function IndexOf(Of T) (
data As T(),
value As T
) As Integer
Request Example
View SourceParameters
- data
- Type: T
The array to search. - value
- Type: T
The value to be searched.
Type Parameters
- T
- The type of the array.
Return Value
Type:
Int32The index of the searched value within the array, or -1 if not found.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also