Dictionary<TKey,TValue>.ICollection<KeyValuePair<TKey,TValue>>.CopyTo Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Copia los elementos de la interfaz ICollection<T> en una matriz de tipo KeyValuePair<TKey,TValue>, comenzando en el índice especificado de la matriz.
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
Parámetros
- array
- KeyValuePair<TKey,TValue>[]
Matriz unidimensional de tipo KeyValuePair<TKey,TValue> que constituye el destino de los elementos KeyValuePair<TKey,TValue> copiados desde la interfaz ICollection<T>. La matriz debe tener una indización de base cero.
- index
- Int32
Índice de base cero en la array
donde comienza la copia.
Implementaciones
Excepciones
array
es null
.
index
es menor que 0.
El número de elementos de la ICollection<T> de origen es mayor que el espacio disponible desde index
hasta el final de la array
de destino.