6 writes to Count
WindowsBase (6)
Shared\MS\Utility\ItemList.cs (6)
16
Count
= 0;
75
Count
++;
84
Count
++;
130
Count
+= delta;
175
Count
= 0;
189
Count
--;
14 references to Count
WindowsBase (14)
Base\System\Windows\DependencyProperty.cs (1)
1254
return RegisteredPropertyList.
Count
;
Shared\MS\Utility\ItemList.cs (13)
30
int delta = (index + 1) -
Count
;
39
return (index >= 0 && index <
Count
);
46
for (int i = 0; i <
Count
; i++)
108
if ((
Count
+ delta) > List.Length)
110
T[] newList = new T[Math.Max(List.Length * 2,
Count
+ delta)];
123
int index =
Count
;
140
Array.Sort(List, 0,
Count
);
146
for (int i = 0; i <
Count
; i++)
154
T[] array = new T[
Count
];
155
Array.Copy(List, 0, array, 0,
Count
);
173
Array.Clear(List, 0,
Count
);
184
Array.Copy(List, index + 1, List, index, (
Count
- index - 1));
187
Array.Clear(List,
Count
- 1, 1);