VariablesCollection.CopyTo Method

Copies the entire collection to a compatible one-dimensional Array, starting at the specified index of the target array.

Namespace:  Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask
Assembly:  Microsoft.SqlServer.Exec80PackageTask (in Microsoft.SqlServer.Exec80PackageTask.dll)

Syntax

'Declaration
Public Overridable Sub CopyTo ( _
    array As Array, _
    index As Integer _
)
'Usage
Dim instance As VariablesCollection
Dim array As Array
Dim index As Integer

instance.CopyTo(array, index)
public virtual void CopyTo(
    Array array,
    int index
)
public:
virtual void CopyTo(
    Array^ array, 
    int index
)
abstract CopyTo : 
        array:Array * 
        index:int -> unit 
override CopyTo : 
        array:Array * 
        index:int -> unit 
public function CopyTo(
    array : Array, 
    index : int
)

Parameters

  • array
    Type: System.Array
    The one-dimensional Array that is the destination of the elements copied from the collection. The Array must have zero-based indexing.
  • index
    Type: System.Int32
    The zero-based index in array at which copying begins.

Implements

ICollection.CopyTo(Array, Int32)