Dictionary 2016.10.04. 17:52 Dictionary 키와 값의 컬렉션을 나타낸다. Add 지정한 키와 값을 가지는 요소를 추가 Remove 지정한 키를 가지는 요소를 제거 using System; using System.Collections.Generic; public class FileFormatTable{ private Dictionary openWith; public FileFormatTable(){ openWith = new Dictionary(); //추가 openWith.Add("txt", "notepad.exe"); openWith.Add("bmp", "paint.exe"); openWith.Add("dib", "paint.exe"); openWith.Add("rtf", ..