Sequence Range Method (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
)

Parameters

start
Type: System Int64
The start value of the collection.
end
Type: System Int64
The exclusive upper bound.

Return Value

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