Click or drag to resize

aceDictionaryCollectionTCopyTo Method

imbSCI | imbACE | imbNLP | imbWEM | imbWBI

Namespace:  imbSCI.Data.collection
Assembly:  imbSCI.Data (in imbSCI.Data.dll) Version: 0.3.70.
Syntax
C#
public void CopyTo(
	KeyValuePair<string, T>[] array,
	int arrayIndex
)
Request Example View Source

Parameters

array
Type: System.Collections.GenericKeyValuePairString, T
The one-dimensional Array that is the destination of the elements copied from ICollectionT. The Array must have zero-based indexing.
arrayIndex
Type: SystemInt32
The zero-based index in array at which copying begins.

Implements

ICollectionTCopyTo(T, Int32)
Exceptions
ExceptionCondition
ArgumentNullExceptionarray is null.
ArgumentOutOfRangeExceptionarrayIndex is less than 0.
ArgumentExceptionarray is multidimensional.-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