FrozenDictionary<TKey,TValue>.CopyTo Methode

Definition

Überlädt

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

Kopiert die Elemente des Wörterbuchs in eine Spanne vom Typ KeyValuePair<TKey,TValue>.

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

Kopiert die Elemente des Wörterbuchs in ein Array vom Typ KeyValuePair<TKey,TValue>, beginnend mit dem angegebenen destinationIndex.

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

Quelle:
FrozenDictionary.cs
Quelle:
FrozenDictionary.cs

Kopiert die Elemente des Wörterbuchs in eine Spanne vom Typ 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)))

Parameter

destination
Span<KeyValuePair<TKey,TValue>>

Die Spanne, die das Ziel der aus dem Wörterbuch kopierten Elemente darstellt.

Gilt für:

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

Quelle:
FrozenDictionary.cs
Quelle:
FrozenDictionary.cs

Kopiert die Elemente des Wörterbuchs in ein Array vom Typ KeyValuePair<TKey,TValue>, beginnend mit dem angegebenen 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)

Parameter

destination
KeyValuePair<TKey,TValue>[]

Das Array, das das Ziel der aus dem Wörterbuch kopierten Elemente darstellt.

destinationIndex
Int32

Der nullbasierte Index im destination, bei dem der Kopiervorgang beginnt.

Implementiert

Gilt für: