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

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