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

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

            this.count = 0;
        }
コード例 #2
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            this.dictionary.Clear();
        }
コード例 #3
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            this.countPerItem.Clear();
        }
コード例 #4
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear <KeyValuePair <Type, TBase> >(this);

            this.values.Clear();
        }
コード例 #5
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            this.instances.Clear();
        }
コード例 #6
0
        /// <inheritdoc />
        public void Clear()
        {
            ICollectionContracts.Clear(this);

            this.disposables.Clear();
        }
コード例 #7
0
        /// <inheritdoc />
        public virtual void Clear()
        {
            ICollectionContracts.Clear(this);

            this.Dictionary.Clear();
        }