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)
26
public bool Contains(TKey key) =>
_dictionary
.ContainsKey(key);
30
if (
_dictionary
.ContainsKey(key))
35
_dictionary
.Add(key, _order.AddLast(value));
41
_dictionary
.Clear();
47
if (
_dictionary
.TryGetValue(key, out LinkedListNode<TValue>? value))
50
_dictionary
.Remove(key);
59
if (
_dictionary
.TryGetValue(key, out var node))
69
public int Count =>
_dictionary
.Count;