CodeAttributeArgumentCollection.CopyTo(CodeAttributeArgument[], Int32) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Kopiuje obiekty kolekcji do wystąpienia jednowymiarowego Array rozpoczynającego się od określonego indeksu.
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)
Parametry
- array
- CodeAttributeArgument[]
Jednowymiarowy Array obiekt docelowy wartości skopiowanych z kolekcji.
- index
- Int32
Indeks tablicy, w której ma rozpocząć wstawianie.
Wyjątki
Tablica docelowa jest wielowymiarowa.
-lub-
Liczba elementów w obiekcie CodeAttributeArgumentCollection jest większa niż dostępna przestrzeń między indeksem tablicy docelowej określonym przez index
parametr a końcem tablicy docelowej.
Parametr array
to null
.
Parametr index
jest mniejszy niż minimalny indeks tablicy docelowej.
Przykłady
W poniższym przykładzie pokazano, jak skopiować zawartość CodeAttributeArgumentCollection obiektu do CodeAttributeArgument tablicy rozpoczynającej się od określonej wartości indeksu.
// 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)