Sequence Range Method (Int64, Int64, Int64)A Sandcastle Documented Class Library
Creates a sequence containing equally spaced values in some integer interval.

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

Parameters

start
Type: System Int64
The start value of the collection.
end
Type: System Int64
The exclusive upper bound.
step
Type: System Int64
The value to increment in each step (positive or negative).

Return Value

Type: ISequence Int64 
A collection with values start, start + step, ... up to, but excluding end.
See Also