Click or drag to resize

ContiguousNonNegativeIntegerRangeNewFromStartAndEnd Method

Constructs an integer range from the first element and the element following immediately after the last element.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static ContiguousNonNegativeIntegerRange NewFromStartAndEnd(
	int start,
	int end
)

Parameters

start  Int32
First element belonging to the range.
end  Int32
Element following immediately after the last element, i.e. Last+1.

Return Value

ContiguousNonNegativeIntegerRange
Newly constructed integer range.
See Also