Click or drag to resize

ContiguousIntegerRangeFromStartAndCount Method

Constructs an integer range from the first element and the number of element of the range. An empty range (with start=0 and count=0) is constructed if count is zero.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static ContiguousIntegerRange FromStartAndCount(
	int start,
	int count
)

Parameters

start  Int32
First element belonging to the range.
count  Int32
Number of consecutive integers belonging to the range.

Return Value

ContiguousIntegerRange
Newly constructed integer range.
See Also