Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SortedSet<T>::CopyTo Method

.NET Framework (current version)
 

Copies a portion or all of a SortedSet<T> to a compatible one-dimensional array, starting at the beginning of the destination array or at a specified index.

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

NameDescription
System_CAPS_pubmethodCopyTo(array<T>^)

Copies the complete SortedSet<T> to a compatible one-dimensional array, starting at the beginning of the target array.

System_CAPS_pubmethodCopyTo(array<T>^, Int32)

Copies the complete SortedSet<T> to a compatible one-dimensional array, starting at the specified array index.

System_CAPS_pubmethodCopyTo(array<T>^, Int32, Int32)

Copies a specified number of elements from SortedSet<T> to a compatible one-dimensional array, starting at the specified array index.

This method is an O(n) operation, where n is Count.

Return to top
Show:
© 2017 Microsoft