5 writes to _collection
PresentationCore (5)
System\Windows\FreezableCollection.cs (5)
69_collection = new List<T>(); 78_collection = new List<T>(capacity); 98_collection = new List<T>(count); 102_collection = new List<T>(); 823_collection = new List<T>(count);
32 references to _collection
PresentationCore (32)
System\Windows\FreezableCollection.cs (32)
114_collection.Add(item); 179for (int i = _collection.Count - 1; i >= 0; i--) 181OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 184_collection.Clear(); 186Debug.Assert(_collection.Count == 0); 201return _collection.Contains(value); 211return _collection.IndexOf(value); 230_collection.Insert(index, value); 259T oldValue = _collection[index]; 265_collection.RemoveAt(index); 286T oldValue = _collection[ index ]; 310T oldValue = _collection[ index ]; 314_collection.RemoveAt(index); 332return _collection[index]; 345T oldValue = _collection[ index ]; 352_collection[ index ] = value; 378return _collection.Count; 395ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 397_collection.CopyTo(array, index); 505ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 516int count = _collection.Count; 519array.SetValue(_collection[i], index + i); 649DependencyObject inheritanceChild = _collection[i]; 728_collection.Add(value); 736return _collection.Count; 821int count = source._collection.Count; 827T newValue = source._collection[i]; 859_collection.Add(newValue); 916int count = _collection.Count; 919T item = _collection[i]; 1037if (_index > -2 && _index < _list._collection.Count - 1) 1039_current = _list._collection[++_index];