CodeTypeReferenceCollection.CopyTo(CodeTypeReference[], Int32) Метод

Определение

Копирует элементы коллекции в указанный одномерный Array по указанному индексу.

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

Параметры

array
CodeTypeReference[]

Одномерный объект Array, являющийся целевым для значений, скопированных из коллекции.

index
Int32

Индекс в массиве, с позиции которого требуется начать вставку.

Исключения

Параметр array является многомерным.

-или-

Количество элементов в CodeTypeReferenceCollection превышает доступное пространство между индексом конечного массива, указанного параметром index, и концом конечного массива.

Параметр array имеет значение null.

Параметр index меньше, чем минимальный индекс целевого массива.

Примеры

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

Применяется к

См. также раздел