2 writes to _key
PresentationCore (2)
Graphics\include\exports.cs (2)
1424
_key
= k;
1516
_head.
_key
= others;
15 references to _key
PresentationCore (15)
Graphics\include\exports.cs (15)
1442
return _head.
_key
== null;
1454
if (_head.
_key
!= null)
1456
if (_head.
_key
== key)
1464
List<Entry> others = (List<Entry>)(_head.
_key
);
1468
if (others[i].
_key
== key)
1498
if (_head.
_key
== null)
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;
1612
if (_head.
_key
== null)
1622
return ((List<Entry>)_head.
_key
).Count;
1639
return _head.
_key
;
1642
return ((List<Entry>)_head.
_key
)[index].
_key
;