Udostępnij za pośrednictwem


FrozenDictionary<TKey,TValue>.CopyTo Metoda

Definicja

Przeciążenia

CopyTo(Span<KeyValuePair<TKey,TValue>>)

Kopiuje elementy słownika do zakresu typu KeyValuePair<TKey,TValue>.

CopyTo(KeyValuePair<TKey,TValue>[], Int32)

Kopiuje elementy słownika do tablicy typu KeyValuePair<TKey,TValue>, począwszy od określonego destinationIndex.

CopyTo(Span<KeyValuePair<TKey,TValue>>)

Źródło:
FrozenDictionary.cs
Źródło:
FrozenDictionary.cs

Kopiuje elementy słownika do zakresu typu KeyValuePair<TKey,TValue>.

public:
 void CopyTo(Span<System::Collections::Generic::KeyValuePair<TKey, TValue>> destination);
public void CopyTo (Span<System.Collections.Generic.KeyValuePair<TKey,TValue>> destination);
member this.CopyTo : Span<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> unit
Public Sub CopyTo (destination As Span(Of KeyValuePair(Of TKey, TValue)))

Parametry

destination
Span<KeyValuePair<TKey,TValue>>

Zakres, który jest miejscem docelowym elementów skopiowanych ze słownika.

Dotyczy

CopyTo(KeyValuePair<TKey,TValue>[], Int32)

Źródło:
FrozenDictionary.cs
Źródło:
FrozenDictionary.cs

Kopiuje elementy słownika do tablicy typu KeyValuePair<TKey,TValue>, począwszy od określonego destinationIndex.

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

Parametry

destination
KeyValuePair<TKey,TValue>[]

Tablica, która jest miejscem docelowym elementów skopiowanych ze słownika.

destinationIndex
Int32

Numerowany od zera indeks w tablicy destination, od którego rozpoczyna się kopiowanie.

Implementuje

Dotyczy