C# ListDictionary Add

Description

ListDictionary Add adds an entry with the specified key and value into the ListDictionary.

Syntax

ListDictionary.Add has the following syntax.


public void Add(
  Object key,
  Object value
)

Parameters

ListDictionary.Add has the following parameters.

  • key - The key of the entry to add.
  • value - The value of the entry to add. The value can be null.

Returns

ListDictionary.Add method returns

Example


using System;//from   ww w . j av  a 2s. co  m
using System.Collections;
using System.Collections.Specialized;

public class SamplesListDictionary  {
   public static void Main()  {
      ListDictionary myCol = new ListDictionary();
      myCol.Add( "F", "1.49" );
      myCol.Add( "A", "1.29" );
      myCol.Add( "B", "1.49" );
      myCol.Add( "C", "1.29" );
      myCol.Add( "D", "0.89" );
      myCol.Add( "E", "0.99" );

      Console.WriteLine(myCol.Count);
   }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System.Collections.Specialized »




BitVector32
HybridDictionary
ListDictionary
OrderedDictionary
StringCollection
StringDictionary
StringEnumerator