3 writes to _others
PresentationCore (3)
Graphics\include\exports.cs (3)
1273
_others
= new List<Entry>(2); // by default we have two entries in the extra storage.
1303
_others
= null;
1325
_others
= null;
18 references to _others
PresentationCore (18)
Graphics\include\exports.cs (18)
1202
if (
_others
!= null)
1227
if (
_others
!= null)
1229
for (int i = 0; i <
_others
.Count; i++)
1231
if (
_others
[i]._key == key)
1271
if (
_others
== null)
1276
_others
.Add(new Entry(key, value));
1281
_others
[index] = new Entry(key, value);
1296
if (
_others
!= null)
1298
Debug.Assert(
_others
.Count > 0);
1299
int j =
_others
.Count-1;
1300
_first =
_others
[j];
1307
_others
.RemoveAt(j);
1322
if (
_others
.Count == 1)
1329
_others
.RemoveAt(index);
1357
value =
_others
[index]._value;
1376
else if (
_others
== null)
1382
return
_others
.Count + 1;
1401
return
_others
[index - 1]._key;