3 writes to _others
PresentationCore (3)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (3)
1119_others = new List<Entry>(2); // by default we have two entries in the extra storage. 1149_others = null; 1170_others = null;
19 references to _others
PresentationCore (19)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\exports.cs (19)
1048if (_others != null) 1073if (_others != null) 1075for (int i = 0; i < _others.Count; i++) 1077if (_others[i]._key == key) 1089Debug.Assert(_others == null, "There shouldn't be anything stored in the others array."); 1117if (_others == null) 1122_others.Add(new Entry(key, value)); 1127_others[index] = new Entry(key, value); 1142if (_others != null) 1144Debug.Assert(_others.Count > 0); 1145int j = _others.Count-1; 1146_first = _others[j]; 1153_others.RemoveAt(j); 1167if (_others.Count == 1) 1174_others.RemoveAt(index); 1202value = _others[index]._value; 1221else if (_others == null) 1227return _others.Count + 1; 1246return _others[index - 1]._key;