Click or drag to resize
BroccoliSharp BroVectorCopyTo Method
Copies the elements of this BroVector to an Array, starting at a particular Array index.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public void CopyTo(
	BroValue[] array,
	int arrayIndex
)

Parameters

array
Type: BroccoliSharpBroValue
The one-dimensional Array that is the destination of the elements copied from BroVector. 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.
ArgumentExceptionThe number of elements in the source BroVector is greater than the available space from arrayIndex to the end of the destination array.
See Also