ConcurrentDictionary<TKey,TValue>.ICollection<KeyValuePair<TKey,TValue>>.CopyTo メソッド

定義

指定した配列インデックスを開始位置として、配列に ICollection の要素をコピーします。

 virtual void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(cli::array <System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ array, int index) = System::Collections::Generic::ICollection<System::Collections::Generic::KeyValuePair<TKey, TValue>>::CopyTo;
void ICollection<KeyValuePair<TKey,TValue>>.CopyTo (System.Collections.Generic.KeyValuePair<TKey,TValue>[] array, int index);
abstract member System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo : System.Collections.Generic.KeyValuePair<'Key, 'Value>[] * int -> unit
override this.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo : System.Collections.Generic.KeyValuePair<'Key, 'Value>[] * int -> unit
Sub CopyTo (array As KeyValuePair(Of TKey, TValue)(), index As Integer) Implements ICollection(Of KeyValuePair(Of TKey, TValue)).CopyTo

パラメーター

array
KeyValuePair<TKey,TValue>[]

ICollection から要素がコピーされる 1 次元配列。 配列には、0 から始まるインデックスが設定されている必要があります。

index
Int32

コピーの開始位置とする array のインデックス (0 から始まる)。

実装

例外

arraynullです。

index が 0 未満です。

indexarray の長さ以上です。

- または -

コピー元の ICollection の要素数が、コピー先 arrayindex から最後までの使用可能領域を超えています。

適用対象

こちらもご覧ください