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