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);
151
for (int i =
_collection
.Count - 1; i >= 0; i--)
153
OnFreezablePropertyChanged(oldValue:
_collection
[i], newValue: null);
156
_collection
.Clear();
158
Debug.Assert(
_collection
.Count == 0);
173
return
_collection
.Contains(value);
183
return
_collection
.IndexOf(value);
202
_collection
.Insert(index, value);
231
T oldValue =
_collection
[index];
237
_collection
.RemoveAt(index);
258
T oldValue =
_collection
[ index ];
282
T oldValue =
_collection
[ index ];
286
_collection
.RemoveAt(index);
304
return
_collection
[index];
317
T oldValue =
_collection
[ index ];
324
_collection
[ index ] = value;
350
return
_collection
.Count;
367
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
369
_collection
.CopyTo(array, index);
477
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
488
int count =
_collection
.Count;
491
array.SetValue(
_collection
[i], index + i);
621
DependencyObject inheritanceChild =
_collection
[i];
700
_collection
.Add(value);
708
return
_collection
.Count;
793
int count = source.
_collection
.Count;
799
T newValue = source.
_collection
[i];
831
_collection
.Add(newValue);
888
int count =
_collection
.Count;
891
T item =
_collection
[i];
1009
if (_index > -2 && _index < _list.
_collection
.Count - 1)
1011
_current = _list.
_collection
[++_index];