Click or drag to resize

AscendingIntegerRangeCollectionAddRangeByFirstAndLastInclusive Method

Adds a range that is specified by a first value and by a last value (inclusive).

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void AddRangeByFirstAndLastInclusive(
	int first,
	int lastInclusive
)

Parameters

first  Int32
First element of the range to add.
lastInclusive  Int32
Last element of the range (inclusive, i.e. this element is included in the range).
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionArgument 'to' has to be greater than or equal to argument 'from'
See Also