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.CollectionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
ContiguousIntegerRangeNewly constructed integer range.
See Also