Exemplo n.º 1
0
        public bool TryRemove(TKey key, out TValue value)
        {
            CheckKey(key);
            KeyValuePair <TKey, TValue> data;
            bool result = internalDictionary.Delete(Hash(key), key, out data);

            value = data.Value;
            return(result);
        }