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);
179
for (int i =
_collection
.Count - 1; i >= 0; i--)
181
OnFreezablePropertyChanged(/* oldValue = */
_collection
[i], /* newValue = */ null);
184
_collection
.Clear();
186
Debug.Assert(
_collection
.Count == 0);
201
return
_collection
.Contains(value);
211
return
_collection
.IndexOf(value);
230
_collection
.Insert(index, value);
259
T oldValue =
_collection
[index];
265
_collection
.RemoveAt(index);
286
T oldValue =
_collection
[ index ];
310
T oldValue =
_collection
[ index ];
314
_collection
.RemoveAt(index);
332
return
_collection
[index];
345
T oldValue =
_collection
[ index ];
352
_collection
[ index ] = value;
378
return
_collection
.Count;
395
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
397
_collection
.CopyTo(array, index);
505
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
516
int count =
_collection
.Count;
519
array.SetValue(
_collection
[i], index + i);
649
DependencyObject inheritanceChild =
_collection
[i];
728
_collection
.Add(value);
736
return
_collection
.Count;
821
int count = source.
_collection
.Count;
827
T newValue = source.
_collection
[i];
859
_collection
.Add(newValue);
916
int count =
_collection
.Count;
919
T item =
_collection
[i];
1037
if (_index > -2 && _index < _list.
_collection
.Count - 1)
1039
_current = _list.
_collection
[++_index];