







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Overload List
Name | Description | |
---|---|---|
![]() ![]() | Copy<(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.
|
![]() ![]() | Copy<(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.
|
![]() ![]() | Copy<(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.
|
![]() ![]() | Copy<(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.
|
![]() ![]() | Copy<(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.
|
![]() ![]() | Copy<(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.
|