CopyTo(Int32,T[],Int32,Int32) Method
In This Topic
Copies a range of elements from the
StructList<T> to a compatible one-dimensional array, starting at the specified index of the target array.
Syntax
'Declaration
Public Overloads Sub CopyTo( _
ByVal As System.Integer, _
ByVal () As , _
ByVal As System.Integer, _
ByVal As System.Integer _
)
public void CopyTo(
System.int ,
[] ,
System.int ,
System.int
)
Parameters
- index
- The zero-based index in the source StructList<T> at which copying begins.
- array
- The one-dimensional System.Array that is the destination of the elements copied from StructList<T>.
- arrayIndex
- The zero-based index in at which copying begins.
- count
- The number of elements to copy.
See Also