2 writes to _list
PresentationFramework (2)
src\Framework\System\Windows\WindowCollection.cs (2)
41
_list
= new ArrayList(1);
47
_list
= new ArrayList(count);
21 references to _list
PresentationFramework (21)
src\Framework\System\Windows\WindowCollection.cs (21)
64
return
_list
[index] as Window;
81
return
_list
.GetEnumerator();
98
_list
.CopyTo(array, index);
108
_list
.CopyTo(array, index);
118
return
_list
.Count;
129
return
_list
.IsSynchronized;
140
return
_list
.SyncRoot;
154
lock (
_list
.SyncRoot)
156
clone = new WindowCollection(
_list
.Count);
157
for (int i = 0; i <
_list
.Count; i++)
159
clone.
_list
.Add(
_list
[i]);
167
lock (
_list
.SyncRoot)
169
_list
.Remove(win);
175
lock (
_list
.SyncRoot)
177
_list
.Remove(index);
183
lock (
_list
.SyncRoot)
185
return
_list
.Add(win);
191
lock (
_list
.SyncRoot)
193
for (int i = 0; i <
_list
.Count; i++)
195
if (
_list
[i] == win)