ImmutableSortedSet<T>.Builder.ICollection<T>.CopyTo Method

Definition

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

 virtual void System.Collections.Generic.ICollection<T>.CopyTo(cli::array <T> ^ array, int arrayIndex) = System::Collections::Generic::ICollection<T>::CopyTo;
void ICollection<T>.CopyTo (T[] array, int arrayIndex);
abstract member System.Collections.Generic.ICollection<T>.CopyTo : 'T[] * int -> unit
override this.System.Collections.Generic.ICollection<T>.CopyTo : 'T[] * int -> unit
Sub CopyTo (array As T(), arrayIndex As Integer) Implements ICollection(Of T).CopyTo

Parameters

array
T[]

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

arrayIndex
Int32

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

Implements

Remarks

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

Applies to