BigArrayTIndexOf Method (T, Int64, 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 starts at the specified index and contains the specified number of elements.
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,
long count
)
Public Function IndexOf (
item As T,
startIndex As Long,
count As Long
) As Long
public:
long long IndexOf(
T item,
long long startIndex,
long long count
)
member IndexOf :
item : 'T *
startIndex : int64 *
count : 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. - count
- Type: SystemInt64
The number of elements in the section to search.
Return Value
Type:
Int64The zero-based index of the first occurrence of item within the range of
elements in the BigArray that starts at index and
contains count number of elements, if found; otherwise, –1.
See Also