5 instantiations of Entry
PresentationCore (5)
Graphics\include\exports.cs (5)
1500_head = new Entry(key, value); 1513others.Add(new Entry(key, value)); 1523((List<Entry>)(_head._key)).Add(new Entry(key, value)); 1529((List<Entry>)(_head._key))[index] = new Entry(key, value); 1544_head = new Entry();
12 references to Entry
PresentationCore (12)
Graphics\include\exports.cs (12)
1438private Entry _head; 1464List<Entry> others = (List<Entry>)(_head._key); 1508List<Entry> others = new List<Entry>(2); // by default we have two entries in the extra storage. 1523((List<Entry>)(_head._key)).Add(new Entry(key, value)); 1529((List<Entry>)(_head._key))[index] = new Entry(key, value); 1552List<Entry> others = (List<Entry>)_head._key; 1597value = ((List<Entry>)_head._key)[index]._value; 1622return ((List<Entry>)_head._key).Count; 1642return ((List<Entry>)_head._key)[index]._key;