IndexCollectionRange Method

Creates an IndexCollection which ranges from the specified first index to the specified last index.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static IndexCollection Range(
	int firstIndex,
	int lastIndex
)

Parameters

firstIndex  Int32
The first index of the range.
lastIndex  Int32
The last index of the range.

Return Value

IndexCollection
The collection of indexes ranging from the first index to the last one.

Exceptions

ArgumentOutOfRangeExceptionfirstIndex is negative.
-or-
lastIndex is less than firstIndex.

See Also