CodeAttributeArgumentCollection.CopyTo(CodeAttributeArgument[], Int32) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Copia os objetos de coleção para uma instância de Array unidimensional, começando no índice especificado.
public:
void CopyTo(cli::array <System::CodeDom::CodeAttributeArgument ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeAttributeArgument[] array, int index);
member this.CopyTo : System.CodeDom.CodeAttributeArgument[] * int -> unit
Public Sub CopyTo (array As CodeAttributeArgument(), index As Integer)
Parâmetros
- array
- CodeAttributeArgument[]
O Array unidimensional que é o destino dos valores copiados da coleção.
- index
- Int32
O índice da matriz no qual iniciar a inserção.
Exceções
A matriz de destino é multidimensional.
- ou -
O número de elementos na CodeAttributeArgumentCollection é 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.
O parâmetro array
é null
.
O parâmetro index
é menor do que o índice mínimo da matriz de destino.
Exemplos
O exemplo a seguir demonstra como copiar o conteúdo de um CodeAttributeArgumentCollection objeto para uma CodeAttributeArgument matriz começando em um valor de índice especificado.
// Copies the contents of the collection beginning at index 0,
// to the specified CodeAttributeArgument array.
// 'arguments' is a CodeAttributeArgument array.
collection->CopyTo( arguments, 0 );
// Copies the contents of the collection beginning at index 0,
// to the specified CodeAttributeArgument array.
// 'arguments' is a CodeAttributeArgument array.
collection.CopyTo( arguments, 0 );
' Copies the contents of the collection beginning at index 0,
' to the specified CodeAttributeArgument array.
' 'arguments' is a CodeAttributeArgument array.
collection.CopyTo(arguments, 0)