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);
187
for (int i =
_collection
.Count - 1; i >= 0; i--)
189
OnFreezablePropertyChanged(/* oldValue = */
_collection
[i], /* newValue = */ null);
192
_collection
.Clear();
194
Debug.Assert(
_collection
.Count == 0);
209
return
_collection
.Contains(value);
219
return
_collection
.IndexOf(value);
238
_collection
.Insert(index, value);
267
T oldValue =
_collection
[index];
273
_collection
.RemoveAt(index);
294
T oldValue =
_collection
[ index ];
318
T oldValue =
_collection
[ index ];
322
_collection
.RemoveAt(index);
340
return
_collection
[index];
354
T oldValue =
_collection
[ index ];
361
_collection
[ index ] = value;
387
return
_collection
.Count;
406
if (index < 0 || (index +
_collection
.Count) > array.Length)
411
_collection
.CopyTo(array, index);
521
if (index < 0 || (index +
_collection
.Count) > array.Length)
535
int count =
_collection
.Count;
538
array.SetValue(
_collection
[i], index + i);
668
DependencyObject inheritanceChild =
_collection
[i];
750
_collection
.Add(value);
758
return
_collection
.Count;
843
int count = source.
_collection
.Count;
849
T newValue = source.
_collection
[i];
881
_collection
.Add(newValue);
938
int count =
_collection
.Count;
941
T item =
_collection
[i];
1060
if (_index > -2 && _index < _list.
_collection
.Count - 1)
1062
_current = _list.
_collection
[++_index];