Copies the numerical data in this variable to the specified Double array.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Sub CopyTo ( _
	array As DateTime(), _
	arrayIndex As Integer _
)
C#
public void CopyTo (
	DateTime[] array,
	int arrayIndex
)
C++
public:
virtual void CopyTo (
	array<DateTime>^ array, 
	int arrayIndex
) sealed

Parameters

array ()
A DateTime array.
arrayIndex (System.Int32)
An integer that represents the index in array at which copying begins.

Exceptions

ExceptionCondition
ArgumentNullExceptionarray is nullNothingnullptr.
ArgumentOutOfRangeExceptionarrayIndex is less than zero.
ArgumentExceptionLength is greater than the number of elements from arrayIndex to the end of array.