Copy Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Overload List

NameDescription
Public methodStatic memberCopy<(Of <T>)>(IEnumerable<(Of <T>)>, IList<(Of <T>)>, Int32)
Copies all of the items from the collection source to the list dest, starting at the index destIndex. If necessary, the size of the destination list is expanded.
Public methodStatic memberCopy<(Of <T>)>(IEnumerable<(Of <T>)>, array<T>[](), Int32)
Copies all of the items from the collection source to the array dest, starting at the index destIndex.
Public methodStatic memberCopy<(Of <T>)>(IEnumerable<(Of <T>)>, IList<(Of <T>)>, Int32, Int32)
Copies at most count items from the collection source to the list dest, starting at the index destIndex. If necessary, the size of the destination list is expanded. The source collection must not be the destination list or part thereof.
Public methodStatic memberCopy<(Of <T>)>(IEnumerable<(Of <T>)>, array<T>[](), Int32, Int32)
Copies at most count items from the collection source to the array dest, starting at the index destIndex. The source collection must not be the destination array or part thereof.
Public methodStatic memberCopy<(Of <T>)>(IList<(Of <T>)>, Int32, IList<(Of <T>)>, Int32, Int32)
Copies count items from the list source, starting at the index sourceIndex, to the list dest, starting at the index destIndex. If necessary, the size of the destination list is expanded. The source and destination lists may be the same.
Public methodStatic memberCopy<(Of <T>)>(IList<(Of <T>)>, Int32, array<T>[](), Int32, Int32)
Copies count items from the list or array source, starting at the index sourceIndex, to the array dest, starting at the index destIndex. The source may be the same as the destination array.

See Also