Auf Englisch lesen

Freigeben über


StringDictionary.CopyTo(Array, Int32) Methode

Definition

Kopiert die Werte des Zeichenfolgenwörterbuchs am angegebenen Index in eine eindimensionale Array-Instanz.

public virtual void CopyTo (Array array, int index);

Parameter

array
Array

Das eindimensionale Array, das das Ziel der aus dem StringDictionary kopierten Werte ist.

index
Int32

Der Index im Array, bei dem mit dem Kopieren begonnen wird.

Ausnahmen

array ist mehrdimensional.

- oder -

Die Anzahl der Elemente in der StringDictionary ist größer als der verfügbare Platz zwischen index und dem Ende von array.

array ist null.

index ist kleiner als die untere array-Grenze.

Beispiele

Das folgende Codebeispiel zeigt, wie ein StringDictionary in ein Array kopiert werden kann.

using System;
using System.Collections;
using System.Collections.Specialized;

public class SamplesStringDictionary  {

   public static void Main()  {

      // Creates and initializes a new StringDictionary.
      StringDictionary myCol = new StringDictionary();
      myCol.Add( "red", "rojo" );
      myCol.Add( "green", "verde" );
      myCol.Add( "blue", "azul" );

      // Displays the values in the StringDictionary.
      Console.WriteLine( "KEYS\tVALUES in the StringDictionary" );
      foreach ( DictionaryEntry myDE in myCol )
         Console.WriteLine( "{0}\t{1}", myDE.Key, myDE.Value );
      Console.WriteLine();

      // Creates an array with DictionaryEntry elements.
      DictionaryEntry[] myArr = { new DictionaryEntry(), new DictionaryEntry(), new DictionaryEntry() };

      // Copies the StringDictionary to the array.
      myCol.CopyTo( myArr, 0 );

      // Displays the values in the array.
      Console.WriteLine( "KEYS\tVALUES in the array" );
      for ( int i = 0; i < myArr.Length; i++ )
         Console.WriteLine( "{0}\t{1}", myArr[i].Key, myArr[i].Value );
      Console.WriteLine();
   }
}

/*
This code produces the following output.

KEYS    VALUES in the StringDictionary
green   verde
red     rojo
blue    azul

KEYS    VALUES in the array
green   verde
red     rojo
blue    azul

*/

Hinweise

CopyTo kopiert Objekte, die typecast sein können, in System.Collections.DictionaryEntry. DictionaryEntry enthält sowohl den Schlüssel als auch den Wert.

Die in die Array kopierten Elemente werden in derselben Reihenfolge sortiert, in der der Enumerator durchläuft StringDictionary.

Bei dieser Methode handelt es sich um einen O(n)-Vorgang, wobei n ist Count.

Gilt für:

Produkt Versionen
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1
UWP 10.0