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

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

Parameters

start
Type: System.Numerics BigInteger
The start value of the sequence.

Return Value

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