2 using System
.Collections
.Generic
;
5 public static void Main() {
6 Dictionary
<string, int> values
= new Dictionary
<string, int>();
7 values
["one"] = 1; values
["two"] = 2;
9 foreach (string key
in values
.Keys
) {
10 System
.Console
.WriteLine("key: {0}", key
);