Click or drag to resize

IndexCollectionRange Method

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

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static IndexCollection Range(
	int firstIndex,
	int lastIndex
)

Parameters

firstIndex
Type: SystemInt32
The first index of the range.
lastIndex
Type: SystemInt32
The last index of the range.

Return Value

Type: IndexCollection
The collection of indexes ranging from the first index to the last one.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionfirstIndex is negative.
-or-
lastIndex is less than firstIndex.
See Also