Copies the entire
ImGearXMPArray<T> to a compatible one-dimensional array, starting at the specified index of the target array.
Syntax
'Declaration
Public Sub CopyTo( _
ByVal () As , _
ByVal As Integer _
)
'Usage
Dim instance As ImGearXMPArray(Of T)
Dim array() As
Dim arrayIndex As Integer
instance.CopyTo(array, arrayIndex)
public void CopyTo(
[] ,
int
)
public: void CopyTo(
[]* ,
int
)
public:
void CopyTo(
,
int
)
Parameters
- array
- The one-dimensional System.Array that is the destination of the elements copied from ImGearXMPArray<T>. The System.Array must have zero-based indexing.
- arrayIndex
- The zero-based index in array at which copying begins.
Exceptions
See Also