키와 값을 같이 저장! using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); //컬렉션 인스턴스 생성 Hashtable table = new Hashtable(); table.Add(100, "홍길동"); //table.Add(100, "임꺽정"); //키 중복 불가. 에러 table.Add(102, new Hero()); table.Add("aaa", 1000); t..