5 writes to _collection
PresentationCore (5)
Core\CSharp\System\Windows\FreezableCollection.cs (5)
72_collection = new List<T>(); 81_collection = new List<T>(capacity); 101_collection = new List<T>(count); 105_collection = new List<T>(); 845_collection = new List<T>(count);
32 references to _collection
PresentationCore (32)
Core\CSharp\System\Windows\FreezableCollection.cs (32)
117_collection.Add(item); 187for (int i = _collection.Count - 1; i >= 0; i--) 189OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 192_collection.Clear(); 194Debug.Assert(_collection.Count == 0); 209return _collection.Contains(value); 219return _collection.IndexOf(value); 238_collection.Insert(index, value); 267T oldValue = _collection[index]; 273_collection.RemoveAt(index); 294T oldValue = _collection[ index ]; 318T oldValue = _collection[ index ]; 322_collection.RemoveAt(index); 340return _collection[index]; 354T oldValue = _collection[ index ]; 361_collection[ index ] = value; 387return _collection.Count; 406if (index < 0 || (index + _collection.Count) > array.Length) 411_collection.CopyTo(array, index); 521if (index < 0 || (index + _collection.Count) > array.Length) 535int count = _collection.Count; 538array.SetValue(_collection[i], index + i); 668DependencyObject inheritanceChild = _collection[i]; 750_collection.Add(value); 758return _collection.Count; 843int count = source._collection.Count; 849T newValue = source._collection[i]; 881_collection.Add(newValue); 938int count = _collection.Count; 941T item = _collection[i]; 1060if (_index > -2 && _index < _list._collection.Count - 1) 1062_current = _list._collection[++_index];