Click or drag to resize
AlgorithmsCopy Method
Overload List
  NameDescription
Public methodStatic memberCopyT(IEnumerableT, IListT, 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 memberCopyT(IEnumerableT, T, Int32)
Copies all of the items from the collection source to the array dest, starting at the index destIndex.
Public methodStatic memberCopyT(IEnumerableT, IListT, 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 memberCopyT(IEnumerableT, 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 memberCopyT(IListT, Int32, IListT, 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 memberCopyT(IListT, Int32, 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.
Top
See Also