/// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            foreach (var entry in this.indexable)
            {
                this.indexable[entry.Key] = TryValue.None <TValue>();
            }

            this.count = 0;
        }
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            this.dictionary.Clear();
        }
Exemplo n.º 3
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            this.countPerItem.Clear();
        }
Exemplo n.º 4
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear <KeyValuePair <Type, TBase> >(this);

            this.values.Clear();
        }
Exemplo n.º 5
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            this.instances.Clear();
        }
Exemplo n.º 6
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            this.disposables.Clear();
        }
        /// <inheritdoc />
        public virtual void Clear()
        {
            ICollectionContracts.Clear(this);

            this.Dictionary.Clear();
        }