ActivityCollection.ICollection<Activity>.CopyTo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies the elements of the ICollection to an Array, starting at a particular Array index.
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
Parameters
- arrayIndex
- Int32
The zero-based index within the ICollection where the copy starts.
Implements
Exceptions
array
is a null reference (Nothing
in Visual Basic).
index
is less than zero.
array
is multidimensional.
index
is equal to or greater than the length of array
.
The number of elements in the source ICollection is greater than the available space from index
to the end of the destination array.
The type Activity cannot be cast automatically to the type of the destination array
.