ISequence T  Slice Method A Sandcastle Documented Class Library
Returns a subsequence starting at index from and extending up to (but not including) index until.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
ISequence<T> Slice(
	int from,
	int until
)

Parameters

from
Type: System Int32
The lowest index to include from this sequence.
until
Type: System Int32
The highest index to exclude from this sequence.

Return Value

Type: ISequence T 
A subsequence starting at index from and extending up to (but not including) index until.
See Also