Sequence From Method (Int32, Int32)A Sandcastle Documented Class Library
Creates an infinite sequence starting at start and incrementing by step in each step.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
public static ISequence<int> From(
	int start,
	int step
)

Parameters

start
Type: System Int32
The start value of the sequence.
step
Type: System Int32
The value to increment in each step (positive or negative).

Return Value

Type: ISequence Int32 
A sequence starting at value start.
See Also