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)
1202if (_others != null) 1227if (_others != null) 1229for (int i = 0; i < _others.Count; i++) 1231if (_others[i]._key == key) 1271if (_others == null) 1276_others.Add(new Entry(key, value)); 1281_others[index] = new Entry(key, value); 1296if (_others != null) 1298Debug.Assert(_others.Count > 0); 1299int j = _others.Count-1; 1300_first = _others[j]; 1307_others.RemoveAt(j); 1322if (_others.Count == 1) 1329_others.RemoveAt(index); 1357value = _others[index]._value; 1376else if (_others == null) 1382return _others.Count + 1; 1401return _others[index - 1]._key;