Copies the NeuroLinkCollection values to a one-dimensional Array instance at the specified index.


Namespace: xpidea.neuro.net
Assembly: xpidea.neuro.net (in xpidea.neuro.net.dll)

Syntax

Visual Basic (Declaration)
Public Sub CopyTo( _ 
   ByVal array As NeuroLink(),  _ 
   ByVal index As Integer _ 
)
C#
public void CopyTo(
   NeuroLink[] array,
   int index
)
C++
public:
 void CopyTo(
   array<NeuroLink>^ array,
   int index
) sealed 
J#
public void CopyTo(
   NeuroLink[] array,
   int index
)
JScript
public  function CopyTo(
   array : NeuroLink[],
   index : int
)

Parameters

array
The one-dimensional Array that is the destination of the values copied from NeuroLinkCollection .
index
The index in array where copying begins.

Exceptions

Exception TypeCondition
ArgumentException

array is multidimensional.

-or-

The number of elements in the NeuroLinkCollection is greater than the available space between arrayIndex and the end of array.

ArgumentNullExceptionarray is a null reference (Nothing in Visual Basic)a null referenceNothing.
ArgumentOutOfRangeExceptionarrayIndex is less than array's lowbound.

See Also