Dictionary<TKey,TValue>.ICollection<KeyValuePair<TKey,TValue>>.CopyTo(KeyValuePair<TKey,TValue>[], Int32) Metoda
Definice
Zkopíruje prvky ICollection<T> do pole typu KeyValuePair<TKey,TValue> počínaje zadaným indexem pole.Copies the elements of the ICollection<T> to an array of type KeyValuePair<TKey,TValue>, starting at the specified array index.
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
Parametry
- array
- KeyValuePair<TKey,TValue>[]
Jednorozměrné pole typu KeyValuePair<TKey,TValue> , které je cílem KeyValuePair<TKey,TValue> prvků zkopírovaných z ICollection<T> .The one-dimensional array of type KeyValuePair<TKey,TValue> that is the destination of the KeyValuePair<TKey,TValue> elements copied from the ICollection<T>. Pole musí mít indexování s nulovým základem.The array must have zero-based indexing.
- index
- Int32
Index založený na nule v poli array
, ve kterém kopírování začíná.The zero-based index in array
at which copying begins.
Implementuje
Výjimky
array
je null
.array
is null
.
index
je menší než 0.index
is less than 0.
Počet prvků ve zdroji ICollection<T> je větší než dostupné místo od index
do konce cílového umístění array
.The number of elements in the source ICollection<T> is greater than the available space from index
to the end of the destination array
.