1 write to _dictionary
System.IO.Packaging (1)
System\IO\Packaging\OrderedDictionary.cs (1)
22_dictionary = new Dictionary<TKey, LinkedListNode<TValue>>(initialCapacity);
8 references to _dictionary
System.IO.Packaging (8)
System\IO\Packaging\OrderedDictionary.cs (8)
26public bool Contains(TKey key) => _dictionary.ContainsKey(key); 30if (_dictionary.ContainsKey(key)) 35_dictionary.Add(key, _order.AddLast(value)); 41_dictionary.Clear(); 47if (_dictionary.TryGetValue(key, out LinkedListNode<TValue>? value)) 50_dictionary.Remove(key); 59if (_dictionary.TryGetValue(key, out var node)) 69public int Count => _dictionary.Count;