5 instantiations of Entry
PresentationCore (5)
Graphics\include\exports.cs (5)
1500
_head = new
Entry
(key, value);
1513
others.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)
1438
private
Entry
_head;
1464
List<
Entry
> others = (List<
Entry
>)(_head._key);
1508
List<
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);
1552
List<
Entry
> others = (List<
Entry
>)_head._key;
1597
value = ((List<
Entry
>)_head._key)[index]._value;
1622
return ((List<
Entry
>)_head._key).Count;
1642
return ((List<
Entry
>)_head._key)[index]._key;