示例#1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ConcurrentCache{TKey, TValue}"/> class.
        /// </summary>
        public ConcurrentCache()
        {
            _values = new Dictionary <TKey, TValue>();
            _lock   = new ReadWriteLock();

            _disposed = false;
        }