共用方式為


CookieCollection.ICollection.CopyTo(Array, Int32) 方法

定義

從特定索引開始,將 CookieCollection 的項目複製到指定的陣列。

 virtual void System.Collections.ICollection.CopyTo(Array ^ array, int index) = System::Collections::ICollection::CopyTo;
void ICollection.CopyTo (Array array, int index);
abstract member System.Collections.ICollection.CopyTo : Array * int -> unit
override this.System.Collections.ICollection.CopyTo : Array * int -> unit
Sub CopyTo (array As Array, index As Integer) Implements ICollection.CopyTo

參數

array
Array

將複製 CookieCollection 的目標陣列。

index
Int32

目標陣列中以零起始的索引,其中複製開始。

實作

例外狀況

array null

index 小於零。

array 是多維度。

-或-

CookieCollection 中的元素數目大於從 index 到目的地結尾的可用空間,array

CookieCollection 中的項目無法自動轉換成目的地 array類型。

備註

Array array 參數必須是一維且以零為起始的索引。

適用於