ISequence T  IndexOf Method (T, Int32, Int32)A Sandcastle Documented Class Library
Finds the index of the first occurrence of some value in this sequence, after or at some start index and within the range specified by count.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
int IndexOf(
	T elem,
	int from,
	int count
)

Parameters

elem
Type: T
The value to search for.
from
Type: System Int32
The start index.
count
Type: System Int32
The number of elements in the section to search.

Return Value

Type: Int32
The index of the first occurrence of elem if any is found; otherwise, -1.
See Also