// CDictionary.cs // http://svc.luckstar.com.tw/CodeHelper/cs/index.html // 2017-03-25, honda@luckstar.com.tw, Create. // 2017-04-23, Honda, Add Dictionary. // KeyWord: Dictionary, KeyValuePair, ValueCollection, KeyCollection, ContainsKey. // Related: CString2. using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleBase { public class CDictionary { Dictionary mList1 = new Dictionary(); Dictionary mList2 = new Dictionary(); public void Run() { Console.WriteLine("CDictionary.Run(), 20170423:"); Console.WriteLine(); Console.WriteLine(); Console.WriteLine("----------"); Console.WriteLine("mList1: "); // Add some elements to the dictionary. There are no // duplicate keys, but some of the values are duplicates. mList1.Add("txt", "notepad.exe"); mList1.Add("bmp", "paint.exe"); mList1.Add("dib", "paint.exe"); mList1.Add("rtf", "wordpad.exe"); if (!mList1.ContainsKey("txt")) mList1.Add("txt", "2222.exe"); // The Add method throws an exception if the new key is // already in the dictionary. try { mList1.Add("txt", "winword.exe"); } catch (ArgumentException) { Console.WriteLine("An element with Key = \"txt\" already exists."); } // The Item property is another name for the indexer, so you // can omit its name when accessing elements. Console.WriteLine("For key = \"rtf\", value = {0}.", mList1["rtf"]); // The indexer can be used to change the value associated // with a key. mList1["rtf"] = "winword.exe"; Console.WriteLine("For key = \"rtf\", value = {0}.", mList1["rtf"]); // If a key does not exist, setting the indexer for that key // adds a new key/value pair. mList1["doc"] = "winword.exe"; // The indexer throws an exception if the requested key is // not in the dictionary. try { Console.WriteLine("For key = \"tif\", value = {0}.", mList1["tif"]); } catch (KeyNotFoundException) { Console.WriteLine("Key = \"tif\" is not found."); } // When a program often has to try keys that turn out not to // be in the dictionary, TryGetValue can be a more efficient // way to retrieve values. string value = ""; if (mList1.TryGetValue("tif", out value)) { Console.WriteLine("For key = \"tif\", value = {0}.", value); } else { Console.WriteLine("Key = \"tif\" is not found."); } // ContainsKey can be used to test keys before inserting // them. if (!mList1.ContainsKey("ht")) { mList1.Add("ht", "hypertrm.exe"); Console.WriteLine("Value added for key = \"ht\": {0}", mList1["ht"]); } // When you use foreach to enumerate dictionary elements, // the elements are retrieved as KeyValuePair objects. Console.WriteLine(); foreach (KeyValuePair kvp in mList1) { Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value); } // To get the values alone, use the Values property. Dictionary.ValueCollection valueColl = mList1.Values; // The elements of the ValueCollection are strongly typed // with the type that was specified for dictionary values. Console.WriteLine(); foreach (string s in valueColl) { Console.WriteLine("Value = {0}", s); } // To get the keys alone, use the Keys property. Dictionary.KeyCollection keyColl = mList1.Keys; // The elements of the KeyCollection are strongly typed // with the type that was specified for dictionary keys. Console.WriteLine(); foreach (string s in keyColl) { Console.WriteLine("Key = {0}", s); } // Use the Remove method to remove a key/value pair. Console.WriteLine("\nRemove(\"doc\")"); mList1.Remove("doc"); if (!mList1.ContainsKey("doc")) { Console.WriteLine("Key \"doc\" is not found."); } Console.WriteLine(); Console.WriteLine("----------"); Console.WriteLine("mList2: "); CString2 oS21; for (int i = 0; i < 3; i++) { oS21 = new CString2("A" + i.ToString(), i.ToString()); mList2.Add(oS21, i); } CString2 oA21 = new CString2("A2", "1"); CString2 oA22 = new CString2("A2", "2"); if (!mList2.ContainsKey(oA21)) mList2.Add(oA21, 1); if (!mList2.ContainsKey(oA22)) mList2.Add(oA22, 2); Console.WriteLine("(\tms1,\tms2):\ti"); foreach (KeyValuePair kvp in mList2) Console.WriteLine("(\t{0},\t{1}):\t{2}", kvp.Key.ms1, kvp.Key.ms2, kvp.Value); } } } /* result: CDictionary.Run(), 20170423: ---------- mList1: An element with Key = "txt" already exists. For key = "rtf", value = wordpad.exe. For key = "rtf", value = winword.exe. Key = "tif" is not found. Key = "tif" is not found. Value added for key = "ht": hypertrm.exe Key = txt, Value = notepad.exe Key = bmp, Value = paint.exe Key = dib, Value = paint.exe Key = rtf, Value = winword.exe Key = doc, Value = winword.exe Key = ht, Value = hypertrm.exe Value = notepad.exe Value = paint.exe Value = paint.exe Value = winword.exe Value = winword.exe Value = hypertrm.exe Key = txt Key = bmp Key = dib Key = rtf Key = doc Key = ht Remove("doc") Key "doc" is not found. ---------- mList2: ( ms1, ms2): i ( A0, 0): 0 ( A1, 1): 1 ( A2, 2): 2 ( A2, 1): 1 */