Click or drag to resize
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: Bio
Assembly: 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
)

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: Int64
The 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