Sequence Range Method (Int32, Int32)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<int> Range(
	int start,
	int end
)

Parameters

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

Return Value

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