Example #1
0
        public virtual object Get(byte[] key)
        {
            int intKey = HashtableByteArrayEntry.Hash(key);

            return(GetFromObjectEntry(intKey, key));
        }
Example #2
0
        public virtual object Remove(byte[] key)
        {
            int intKey = HashtableByteArrayEntry.Hash(key);

            return(RemoveObjectEntry(intKey, key));
        }