XmlSchemaObjectCollection.CopyTo(XmlSchemaObject[], Int32) Method

Definition

Copies all the XmlSchemaObjects from the collection into the given array, starting at the given index.

public:
 void CopyTo(cli::array <System::Xml::Schema::XmlSchemaObject ^> ^ array, int index);
public void CopyTo (System.Xml.Schema.XmlSchemaObject[] array, int index);
member this.CopyTo : System.Xml.Schema.XmlSchemaObject[] * int -> unit
Public Sub CopyTo (array As XmlSchemaObject(), index As Integer)

Parameters

array
XmlSchemaObject[]

The one-dimensional array that is the destination of the elements copied from the XmlSchemaObjectCollection. The array must have zero-based indexing.

index
Int32

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

Exceptions

array is a null reference (Nothing in Visual Basic).

index is less than zero.

array is multi-dimensional.

-or-

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

-or-

The number of elements in the source XmlSchemaObject is greater than the available space from index to the end of the destination array.

The type of the source XmlSchemaObject cannot be cast automatically to the type of the destination array.

Remarks

The specified array must be of a compatible type.

This method uses Copy to copy the elements.

Applies to