ContiguousIntegerRangeFromStartAndEndExclusive Method |
Constructs an integer range from the first element and the element following immediately after the last element.
An empty range (with start=0 and count=0) is constructed if start is equal to end.
Namespace: Altaxo.CollectionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static ContiguousIntegerRange FromStartAndEndExclusive(
int start,
int end
)
Parameters
- start Int32
- First element belonging to the range.
- end Int32
- Element following immediately after the last element, i.e. LastInclusive+1.
Return Value
ContiguousIntegerRangeNewly constructed integer range.
See Also