Lines Matching refs:KeyValuePair
72 private readonly Dictionary<TKey, LinkedListNode<KeyValuePair<TKey, TValue>>> map =
73 new Dictionary<TKey, LinkedListNode<KeyValuePair<TKey, TValue>>>();
74 …private readonly LinkedList<KeyValuePair<TKey, TValue>> list = new LinkedList<KeyValuePair<TKey, T…
145 LinkedListNode<KeyValuePair<TKey, TValue>> node; in Remove()
168 LinkedListNode<KeyValuePair<TKey, TValue>> node; in TryGetValue()
208 LinkedListNode<KeyValuePair<TKey, TValue>> node;
209 var pair = new KeyValuePair<TKey, TValue>(key, value);
251 public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator() in GetEnumerator()
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()
319 LinkedListNode<KeyValuePair<TKey, TValue>> node; in Remove()
553 private readonly IEnumerator<KeyValuePair<TKey, TValue>> enumerator;
555 internal DictionaryEnumerator(IEnumerator<KeyValuePair<TKey, TValue>> enumerator) in DictionaryEnumerator()
676 private readonly Func<KeyValuePair<TKey, TValue>, T> projection;
681 Func<KeyValuePair<TKey, TValue>, T> projection, in MapView()