ImmutableSortedSet<T>::ICollection<T>::CopyTo Method (array<T>^, Int32)

 

Copies the elements of the collection to an array, starting at a particular array index.

Namespace:   System.Collections.Immutable
Assembly:  System.Collections.Immutable (in System.Collections.Immutable.dll)

private:
virtual void CopyTo(
	array<T>^ array,
	int arrayIndex
) sealed = ICollection<T>::CopyTo

Parameters

array
Type: array<T>^

The one-dimensional array that is the destination of the elements copied from collection. The array must have zero-based indexing.

arrayIndex
Type: System::Int32

The zero-based index in array at which copying begins.

This member is an explicit interface member implementation. It can be used only when the ImmutableSortedSet<T> instance is cast to an ICollection<T> interface.

NuGet package: System.Collections.Immutable (about immutable collections and how to install)

Return to top
Show: