Click or drag to resize
Wizard .NET Library

EventedListTCopyTo Method (Int32, T, Int32, Int32)

Namespace:  System.Collections.Generic
Assembly:  AeroWizard (in AeroWizard.dll) Version: 2.2.3
Syntax
public void CopyTo(
	int index,
	T[] array,
	int arrayIndex,
	int count
)
Request Example View Source

Parameters

index
Type: SystemInt32
The zero-based index in the source EventedListT at which copying begins.
array
Type: T
The one-dimensional Array that is the destination of the elements copied from EventedListT. The Array must have zero-based indexing.
arrayIndex
Type: SystemInt32
The zero-based index in array at which copying begins.
count
Type: SystemInt32
The number of elements to copy.
Exceptions
ExceptionCondition
ArgumentNullExceptionarray is null.
ArgumentOutOfRangeExceptionarrayIndex is less than 0.
ArgumentExceptionarray is multidimensional. -or- arrayIndex is equal to or greater than the length of array.-or-The number of elements in the source ICollectionT is greater than the available space from arrayIndex to the end of the destination array.-or-Type T cannot be cast automatically to the type of the destination array.
See Also