共用方式為


ParserErrorCollection.CopyTo(ParserError[], Int32) 方法

定義

將集合中的 ParserError 物件複製到相容的一維陣列,從目標陣列所指定的索引開始。

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

參數

array
ParserError[]

型別 ParserError 的陣列,集合中的剖析器錯誤會複製到此陣列中。

index
Int32

陣列中的第一個索引 (ParserError 會複製到此陣列中)。

範例

下列程式碼範例示範如何將 物件的內容 ParserErrorCollection 複製到指定的 ParserError 陣列。

// Copy the contents of the collection to a
// compatible array, starting at index 0 of the
// destination array. 
ParserError[] errorsToSort = new ParserError[5];
collection.CopyTo(errorsToSort, 0);
' Copy the contents of the collection to a
' compatible array, starting at index 0 of the
' destination array. 
Dim errorsToSort(5) As ParserError
collection.CopyTo(errorsToSort, 0)

備註

CopyTo使用 方法來複製 ParserError 集合中的 物件, (包括它們所包含的專案參考,) 相容的陣列,從指定的索引開始。 當您想要使用 方法排序 ParserError 集合中的物件時, Sort 這會很有用。 若要這樣做:

  1. ParserError 物件複製到相容的陣列。

  2. 排序陣列。

  3. Remove使用 方法可從集合中移除所有 ParserError 物件。

  4. AddRange使用 方法,將已排序的陣列新增回集合。

適用於