C# StringDictionary Keys
Description
StringDictionary Keys
gets a collection of keys in the
StringDictionary.
Syntax
StringDictionary.Keys
has the following syntax.
public virtual ICollection Keys { get; }
Example
using System;// w w w. j a v a 2 s . c om
using System.Collections;
using System.Collections.Specialized;
public class SamplesStringDictionary {
public static void Main() {
StringDictionary myCol = new StringDictionary();
myCol.Add( "red", "rojo" );
myCol.Add( "green", "verde" );
myCol.Add( "blue", "azul" );
String[] myKeys = new String[myCol.Count];
myCol.Keys.CopyTo( myKeys, 0 );
Console.WriteLine( " INDEX KEY VALUE" );
for ( int i = 0; i < myCol.Count; i++ )
Console.WriteLine( " {0,-5} {1,-25} {2}", i, myKeys[i], myCol[myKeys[i]] );
Console.WriteLine();
}
}
The code above generates the following result.