Remove Key : StringDictionary « Collections Data Structure « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Collections Data Structure » StringDictionaryScreenshots 
Remove Key
 
using System;
using System.Collections;
using System.Collections.Specialized;

public class SamplesStringDictionary  {
   public static void Main()  {
      StringDictionary myCol = new StringDictionary();
      myCol.Add"A""a" );
      myCol.Add"B""b" );
      myCol.Add"C""c" );

      PrintKeysAndValues1myCol );
      DictionaryEntry[] myArr = new DictionaryEntry[myCol.Count];
      myCol.CopyTomyArr, );
      for int i = 0; i < myArr.Length; i++ )
         Console.WriteLine"   {0,-10} {1}", myArr[i].Key, myArr[i].Value );
      if myCol.ContainsValue"a" ) )
         Console.WriteLine"The collection contains the value \"amarillo\"." );
      else
         Console.WriteLine"The collection does not contain the value \"amarillo\"." );
      if myCol.ContainsKey"A" ) )
         myCol.Remove"A" );
      PrintKeysAndValues1myCol );
      myCol.Clear();
      PrintKeysAndValues1myCol );
   }
   public static void PrintKeysAndValues1StringDictionary myCol )  {
      foreach DictionaryEntry de in myCol )
         Console.WriteLine"   {0,-25} {1}", de.Key, de.Value );
   }

}

   
  
Related examples in the same category
1.StringDictionary Class implements a hash table with the key and the value strongly typed to be strings rather than objects.
2.Contains value
3.Contains key
4.Loop through StringDictionary with IEnumerator and get DictionaryEntry
5.Copy key out
6.Gets a collection of values in the StringDictionary.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.