Lines Matching refs:ICollection
225 …public ICollection<TKey> Keys { get { return new MapView<TKey>(this, pair => pair.Key, ContainsKey…
230 …public ICollection<TValue> Values { get { return new MapView<TValue>(this, pair => pair.Value, Con…
271 void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) in Add()
290 bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) in Contains()
302 …void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayI… in CopyTo()
313 bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) in Remove()
513 void ICollection.CopyTo(Array array, int index) in ICollection.CopyTo()
516 … ICollection temp = this.Select(pair => new DictionaryEntry(pair.Key, pair.Value)).ToList(); in ICollection.CopyTo()
522 ICollection IDictionary.Keys { get { return (ICollection)Keys; } }
524 ICollection IDictionary.Values { get { return (ICollection)Values; } }
526 bool ICollection.IsSynchronized { get { return false; } }
528 object ICollection.SyncRoot { get { return this; } }
673 private class MapView<T> : ICollection<T>, ICollection