Click or drag to resize

AscendingIntegerRangeCollectionRemoveRangeByFirstAndLastInclusive Method

Removes all elements that belong to the provided 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 RemoveRangeByFirstAndLastInclusive(
	int first,
	int lastInclusive
)

Parameters

first  Int32
First element of the range to remove.
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