Share via


AnalysisAlternateBaseCollection.CopyTo Method

Copies all of the elements of the current AnalysisAlternateBaseCollection to the specified one-dimensional array, starting at the specified destination array index.

Namespace:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Syntax

'Declaration
Public Sub CopyTo ( _
    alternates As AnalysisAlternateBase(), _
    index As Integer _
)
'Usage
Dim instance As AnalysisAlternateBaseCollection 
Dim alternates As AnalysisAlternateBase()
Dim index As Integer

instance.CopyTo(alternates, index)
public void CopyTo(
    AnalysisAlternateBase[] alternates,
    int index
)
public:
void CopyTo(
    array<AnalysisAlternateBase^>^ alternates, 
    int index
)
public function CopyTo(
    alternates : AnalysisAlternateBase[], 
    index : int
)

Parameters

  • index
    Type: System.Int32

    The zero-based index in the array parameter at which copying begins.

Remarks

The elements are copied to Array in the same order in which the enumerator iterates through the AnalysisAlternateBaseCollection.

An exception is thrown if:

  • The array parameter is a nulla null reference (Nothing in Visual Basic) reference.

  • The index parameter is less than zero.

  • The array parameter is multidimensional.

  • The index parameter is equal to or greater than the length of the array parameter.

  • The number of elements in the collection is larger than the available space from the index parameter to the end of the destination array parameter.

The type of the collection is cast automatically to the type of the destination array parameter. However, this method copies elements only to arrays of the same type as the elements of the collection or arrays of type Object. Attempting to copy to another type of array causes an InvalidCastException to be thrown.

Examples

The following example fills part of an array of AnalysisAlternateBase objects with an AnalysisAlternateBaseCollection, alternates. It starts at element 1 (the second element in a zero-based array) of the destination array, alternatesArray, and leaves the first element of the destination array (with an index of 0) empty.

Dim alternateArray(alternates.Count) As AnalysisAlternateBase
alternates.CopyTo(alternateArray, 1)
            AnalysisAlternateBase[] alternateArray = new AnalysisAlternateBase[alternates.Count + 1];
            alternates.CopyTo(alternateArray, 1);

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

AnalysisAlternateBaseCollection Class

AnalysisAlternateBaseCollection Members

System.Windows.Ink.AnalysisCore Namespace