CompilerErrorCollection.CopyTo(CompilerError[], Int32) 方法

定义

将集合的值复制到一维 Array 实例的指定索引位置。

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

参数

array
CompilerError[]

一维 Array,它是从 CompilerErrorCollection 复制的值的目标。

index
Int32

数组中复制起始处的索引。

例外

array 参数指示的数组是多维的。

- 或 -

CompilerErrorCollection 中的元素数目大于 arrayIndex 参数指示的数组中的 array 参数索引值和 array 参数指示的数组末尾之间的可用空间。

array 参数为 null

index 参数小于 array 参数指示的数组下限。

示例

以下示例演示如何使用 CopyTo 方法将 的内容复制到 CompilerErrorCollection 数组,从指定的索引值开始。

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

适用于

另请参阅