BigArrayTIndexOf Method (T, Int64) |
Searches for the specified object and returns the zero-based index of the
first occurrence within the range of elements in the BigArray
that extends from the specified index to the last element.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public long IndexOf(
T item,
long startIndex
)
Public Function IndexOf (
item As T,
startIndex As Long
) As Long
public:
long long IndexOf(
T item,
long long startIndex
)
member IndexOf :
item : 'T *
startIndex : int64 -> int64
Parameters
- item
- Type: T
The object to locate in the BigArray. The value
can be null for reference types. - startIndex
- Type: SystemInt64
The zero-based starting index of the search. 0 (zero)
is valid in an empty BigArray.
Return Value
Type:
Int64 The zero-based index of the first occurrence of item within the range of
elements in the BigArray that extends from index to the last element,
if found; otherwise, –1.
See Also