CopyTo 方法
Copies the entire collection to a compatible one-dimensional Array, starting at the specified index of the target array.
命名空间: Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask
程序集: Microsoft.SqlServer.Exec80PackageTask(在 Microsoft.SqlServer.Exec80PackageTask.dll 中)
语法
声明
Public Overridable Sub CopyTo ( _
array As Array, _
index As Integer _
)
用法
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
)
参数
- array
类型: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
类型:System. . :: . .Int32
The zero-based index in array at which copying begins.