Auf Englisch lesen

Freigeben über


StringDictionary.Remove(String) Methode

Definition

Entfernt den Eintrag mit dem angegebenen Schlüssel aus dem Zeichenfolgenwörterbuch.

public virtual void Remove (string key);

Parameter

key
String

Der Schlüssel des zu entfernenden Eintrags.

Ausnahmen

Der Schlüssel ist null.

StringDictionary ist schreibgeschützt.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie Elemente hinzugefügt und daraus entfernt werden StringDictionary.

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( "Initial contents of the StringDictionary:" );
      PrintKeysAndValues( myCol );

      // Deletes an element.
      myCol.Remove( "green" );
      Console.WriteLine( "The collection contains the following elements after removing \"green\":" );
      PrintKeysAndValues( myCol );

      // Clears the entire collection.
      myCol.Clear();
      Console.WriteLine( "The collection contains the following elements after it is cleared:" );
      PrintKeysAndValues( myCol );
   }

   public static void PrintKeysAndValues( StringDictionary myCol )  {
      Console.WriteLine( "   KEY        VALUE" );
      foreach ( DictionaryEntry de in myCol )
         Console.WriteLine( "   {0,-10} {1}", de.Key, de.Value );
      Console.WriteLine();
   }
}

/*
This code produces the following output.

Initial contents of the StringDictionary:
   KEY        VALUE
   green      verde
   red        rojo
   blue       azul

The collection contains the following elements after removing "green":
   KEY        VALUE
   red        rojo
   blue       azul

The collection contains the following elements after it is cleared:
   KEY        VALUE

*/

Hinweise

Wenn das StringDictionary kein Element mit dem angegebenen Schlüssel enthält, bleibt der StringDictionary unverändert. Es wird keine Ausnahme ausgelöst.

Der Schlüssel wird ohne Berücksichtigung der Groß-/Kleinschreibung behandelt. Es wird in Kleinbuchstaben übersetzt, bevor er verwendet wird, um den Eintrag zu finden, der aus dem Zeichenfolgenwörterbuch entfernt werden soll.

Bei dieser Methode handelt es sich um einen O(1)-Vorgang.

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

Weitere Informationen