ActivityCollection.ICollection<Activity>.CopyTo 方法

定义

从特定的 ICollection 索引开始,将 Array 的元素复制到一个 Array 中。

 virtual void System.Collections.Generic.ICollection<System.Workflow.ComponentModel.Activity>.CopyTo(cli::array <System::Workflow::ComponentModel::Activity ^> ^ array, int arrayIndex) = System::Collections::Generic::ICollection<System::Workflow::ComponentModel::Activity ^>::CopyTo;
void ICollection<Activity>.CopyTo (System.Workflow.ComponentModel.Activity[] array, int arrayIndex);
abstract member System.Collections.Generic.ICollection<System.Workflow.ComponentModel.Activity>.CopyTo : System.Workflow.ComponentModel.Activity[] * int -> unit
override this.System.Collections.Generic.ICollection<System.Workflow.ComponentModel.Activity>.CopyTo : System.Workflow.ComponentModel.Activity[] * int -> unit
Sub CopyTo (array As Activity(), arrayIndex As Integer) Implements ICollection(Of Activity).CopyTo

参数

array
Activity[]

作为复制操作的目标的 Array

arrayIndex
Int32

ICollection 中开始复制操作的从零开始的索引。

实现

例外

array 为空引用(在 Visual Basic 中为 Nothing)。

index 小于零。

array 是多维的。

index 等于或大于 array 的长度。

ICollection 中的元素个数大于从 index 到目标数组末尾之间的可用空间。

无法自动将类型 Activity 强制转换为目标 array 的类型。

适用于