TableCollection.CopyTo-Methode
Copies the collection of objects to a one-dimensional array beginning at the index value specified.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub CopyTo ( _
array As Table(), _
index As Integer _
)
'Usage
Dim instance As TableCollection
Dim array As Table()
Dim index As Integer
instance.CopyTo(array, index)
public void CopyTo(
Table[] array,
int index
)
public:
void CopyTo(
array<Table^>^ array,
int index
)
member CopyTo :
array:Table[] *
index:int -> unit
public function CopyTo(
array : Table[],
index : int
)
Parameter
- array
Typ: array<Microsoft.SqlServer.Management.Smo.Table[]
An array of Table objects.
- index
Typ: System.Int32
An Int32 value that specifies the index value in the collection to start copying.