IndexCollectionFromArray(Int32) Method

Initializes a new instance of the IndexCollection class that contains elements copied from the specified array.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static IndexCollection FromArray(
	int[] indexes
)

Parameters

indexes  Int32
The array that stores the elements of the new IndexCollection instance.

Return Value

IndexCollection
A collection containing the indexes in the specified array.

Exceptions

ArgumentNullExceptionindexes is null.
ArgumentException The Length of indexes is zero.
-or-
indexes contains a negative element.

See Also