CodeAttributeDeclarationCollection.CopyTo(CodeAttributeDeclaration[], Int32) Método

Definição

Copia os objetos de coleção para uma instância de Array unidimensional, começando no índice especificado.Copies the collection objects to a one-dimensional Array instance beginning at the specified index.

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

Parâmetros

array
CodeAttributeDeclaration[]

O Array unidimensional que é o destino dos valores copiados da coleção.The one-dimensional Array that is the destination of the values copied from the collection.

index
Int32

O índice da matriz no qual iniciar a inserção.The index of the array at which to begin inserting.

Exceções

A matriz de destino é multidimensional.The destination array is multidimensional.

- ou --or- O número de elementos na CodeAttributeDeclarationCollection é maior do que o espaço disponível entre o índice da matriz de destino especificada pelo parâmetro index e o final da matriz de destino.The number of elements in the CodeAttributeDeclarationCollection is greater than the available space between the index of the target array specified by the index parameter and the end of the target array.

O parâmetro array é null.The array parameter is null.

O parâmetro index é menor do que o índice mínimo da matriz de destino.The index parameter is less than the target array's minimum index.

Exemplos

O exemplo a seguir demonstra como copiar o conteúdo de um CodeAttributeDeclarationCollection para uma matriz que começa no índice 0.The following example demonstrates how to copy the contents of a CodeAttributeDeclarationCollection to an array beginning at index 0.

// Copies the contents of the collection, beginning at index 0,
// to the specified CodeAttributeDeclaration array.
// 'declarations' is a CodeAttributeDeclaration array.
collection->CopyTo( declarations, 0 );
// Copies the contents of the collection, beginning at index 0,
// to the specified CodeAttributeDeclaration array.
// 'declarations' is a CodeAttributeDeclaration array.
collection.CopyTo( declarations, 0 );
' Copies the contents of the collection beginning at index 0 to the specified CodeAttributeDeclaration array.
' 'declarations' is a CodeAttributeDeclaration array.
collection.CopyTo(declarations, 0)

Aplica-se a

Confira também