Поделиться через


CodeCommentStatementCollection.CopyTo(CodeCommentStatement[], Int32) Метод

Определение

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

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

Параметры

array
CodeCommentStatement[]

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

index
Int32

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

Исключения

Массив назначения является многомерным.

-или-

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

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

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

Примеры

В следующем примере показано, как скопировать содержимое объекта в CodeCommentStatementCollection массив, начинающийся со значения индекса 0.

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

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

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