Utils.CopyArray(Array, Array) Method

Definition

Used by the Visual Basic compiler as a helper for Redim.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static Array ^ CopyArray(Array ^ arySrc, Array ^ aryDest);
public static Array CopyArray (Array arySrc, Array aryDest);
static member CopyArray : Array * Array -> Array
Public Shared Function CopyArray (arySrc As Array, aryDest As Array) As Array
Public Function CopyArray (arySrc As Array, aryDest As Array) As Array

Parameters

arySrc
Array

The array to be copied.

aryDest
Array

The destination array.

Returns

The copied array.

Remarks

This class supports the Visual Basic compiler and is not intended to be used directly from your code.

Applies to