CodeDirectiveCollection.CopyTo(CodeDirective[], Int32) Método
Definição
Copia o conteúdo da coleção para uma matriz unidimensional começando no índice especificado.Copies the contents of the collection to a one-dimensional array beginning at the specified index.
public:
void CopyTo(cli::array <System::CodeDom::CodeDirective ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeDirective[] array, int index);
member this.CopyTo : System.CodeDom.CodeDirective[] * int -> unit
Public Sub CopyTo (array As CodeDirective(), index As Integer)
Parâmetros
- array
- CodeDirective[]
Uma matriz do tipo CodeDirective que é o destino dos valores copiados da coleção.An array of type CodeDirective that is the destination of the values copied from the collection.
- index
- Int32
O índice na matriz no qual começar a inserir objetos de coleção.The index in the array at which to begin inserting collection objects.
Exceções
A matriz de destino é multidimensional.The destination array is multidimensional.
- ou --or-
O número de elementos no CodeDirectiveCollection é maior do que o espaço disponível entre o índice da matriz de destino especificada pelo index e o final da matriz de destino.The number of elements in the CodeDirectiveCollection is greater than the available space between the index of the target array specified by index and the end of the target array.
array é null.array is null.
index é menor do que o índice mínimo da matriz de destino.index is less than the target array's minimum index.
Exemplos
O exemplo de código a seguir mostra o uso do CopyTo método para copiar o conteúdo da coleção que começa no índice 0 para a CodeDirective matriz especificada.The following code example shows the use of the CopyTo method to copy the contents of the collection beginning at index 0 to the specified CodeDirective array. Este exemplo faz parte de um exemplo maior fornecido para a CodeDirectiveCollection classe.This example is part of a larger example provided for the CodeDirectiveCollection class.
// Copies the contents of the collection beginning at index 0 to the specified CodeDirective array.
// 'directives' is a CodeDirective array.
collection.CopyTo(directives, 0);
' Copies the contents of the collection beginning at index 0 to the specified CodeDirective array.
' 'directives' is a CodeDirective array.
collection.CopyTo(directives, 0)