Lines Matching refs:ICollection
228 …public ICollection<TKey> Keys { get { return new MapView<TKey>(this, pair => pair.Key, ContainsKey…
233 …public ICollection<TValue> Values { get { return new MapView<TValue>(this, pair => pair.Value, Con…
274 void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) in Add()
293 bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) in Contains()
304 …void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayI… in CopyTo()
315 bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) in Remove()
516 void ICollection.CopyTo(Array array, int index) in ICollection.CopyTo()
519 … ICollection temp = this.Select(pair => new DictionaryEntry(pair.Key, pair.Value)).ToList(); in ICollection.CopyTo()
525 ICollection IDictionary.Keys { get { return (ICollection)Keys; } }
527 ICollection IDictionary.Values { get { return (ICollection)Values; } }
529 bool ICollection.IsSynchronized { get { return false; } }
531 object ICollection.SyncRoot { get { return this; } }
684 private class MapView<T> : ICollection<T>, ICollection