5 writes to _collection
PresentationCore (5)
System\Windows\FreezableCollection.cs (5)
42
_collection
= new List<T>();
51
_collection
= new List<T>(capacity);
71
_collection
= new List<T>(count);
75
_collection
= new List<T>();
796
_collection
= new List<T>(count);
32 references to _collection
PresentationCore (32)
System\Windows\FreezableCollection.cs (32)
87
_collection
.Add(item);
152
for (int i =
_collection
.Count - 1; i >= 0; i--)
154
OnFreezablePropertyChanged(/* oldValue = */
_collection
[i], /* newValue = */ null);
157
_collection
.Clear();
159
Debug.Assert(
_collection
.Count == 0);
174
return
_collection
.Contains(value);
184
return
_collection
.IndexOf(value);
203
_collection
.Insert(index, value);
232
T oldValue =
_collection
[index];
238
_collection
.RemoveAt(index);
259
T oldValue =
_collection
[ index ];
283
T oldValue =
_collection
[ index ];
287
_collection
.RemoveAt(index);
305
return
_collection
[index];
318
T oldValue =
_collection
[ index ];
325
_collection
[ index ] = value;
351
return
_collection
.Count;
368
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
370
_collection
.CopyTo(array, index);
478
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
489
int count =
_collection
.Count;
492
array.SetValue(
_collection
[i], index + i);
622
DependencyObject inheritanceChild =
_collection
[i];
701
_collection
.Add(value);
709
return
_collection
.Count;
794
int count = source.
_collection
.Count;
800
T newValue = source.
_collection
[i];
832
_collection
.Add(newValue);
889
int count =
_collection
.Count;
892
T item =
_collection
[i];
1010
if (_index > -2 && _index < _list.
_collection
.Count - 1)
1012
_current = _list.
_collection
[++_index];