KeyValuePair1.txt ---------- 20190722 private KeyValuePair SetKeyValuePair() { int intKey = 1; string strValue = "My value"; KeyValuePair kvp = new KeyValuePair(intKey, strValue); return kvp; } private void GetKeyValuePairDemo() { KeyValuePair kvp = SetKeyValuePair(); int intKey = kvp.Key; string strValue = kvp.Value; } Dictionary dic = new Dictionary(); dic.Add("Name", "puma"); dic.Add("Blog", "F6 Team"); dic.Add("Group", "Dotblogs"); foreach (KeyValuePair item in dic) { Response.Write(string.Format("{0} : {1}
", item.Key, item.Value)); } ---------- // When you use foreach to enumerate dictionary elements, // the elements are retrieved as KeyValuePair objects. Console.WriteLine(); foreach( KeyValuePair kvp in openWith ) { Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value); }