Exemple #1
0
        public Value Get(Key key)
        {
            LinkedList3 <Key, Value> list = hashtable[Hash(key)];

            return(list.Get(key));
        }
 public Value Get(Key key)
 {
     return(list.Get(key));
 }