BigListTIndexOf Method (T) |
Searches for the specified object and returns the zero-based index of the
first occurrence within the entire BigList.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public long IndexOf(
T item
)
Public Function IndexOf (
item As T
) As Long
public:
long long IndexOf(
T item
)
member IndexOf :
item : 'T -> int64
Parameters
- item
- Type: T
The object to locate in the BigList. The value
can be null for reference types.
Return Value
Type:
Int64The zero-based index of the first occurrence of item within the entire BigList,
if found; otherwise, –1.
See Also