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

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

            return(RemoveObjectEntry(intKey, key));
        }