public void Insert(Word w, string meaning) { defTable[w.HashCode()] = meaning; }
public string Find(Word w) { return defTable[w.HashCode()]; }