5 writes to _collection
PresentationCore (5)
System\Windows\FreezableCollection.cs (5)
41_collection = new List<T>(); 50_collection = new List<T>(capacity); 70_collection = new List<T>(count); 74_collection = new List<T>(); 795_collection = new List<T>(count);
32 references to _collection
PresentationCore (32)
System\Windows\FreezableCollection.cs (32)
86_collection.Add(item); 151for (int i = _collection.Count - 1; i >= 0; i--) 153OnFreezablePropertyChanged(oldValue: _collection[i], newValue: null); 156_collection.Clear(); 158Debug.Assert(_collection.Count == 0); 173return _collection.Contains(value); 183return _collection.IndexOf(value); 202_collection.Insert(index, value); 231T oldValue = _collection[index]; 237_collection.RemoveAt(index); 258T oldValue = _collection[ index ]; 282T oldValue = _collection[ index ]; 286_collection.RemoveAt(index); 304return _collection[index]; 317T oldValue = _collection[ index ]; 324_collection[ index ] = value; 350return _collection.Count; 367ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 369_collection.CopyTo(array, index); 477ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 488int count = _collection.Count; 491array.SetValue(_collection[i], index + i); 621DependencyObject inheritanceChild = _collection[i]; 700_collection.Add(value); 708return _collection.Count; 793int count = source._collection.Count; 799T newValue = source._collection[i]; 831_collection.Add(newValue); 888int count = _collection.Count; 891T item = _collection[i]; 1009if (_index > -2 && _index < _list._collection.Count - 1) 1011_current = _list._collection[++_index];