6 writes to Count
ReachFramework (6)
Serialization\Manager\ReachSerializationUtils.cs (6)
28
Count
= 0;
109
Count
++;
124
Count
++;
188
Count
+= delta;
246
Count
= 0;
264
Count
--;
16 references to Count
ReachFramework (16)
Serialization\Manager\MetroSerializationManager.cs (3)
790
if(list.
Count
> 0)
794
TypeDependencyPropertyCache[] dependencyPropertiesCache = new TypeDependencyPropertyCache[list.
Count
];
797
indexInDependencyPropertyList<list.
Count
;
Serialization\Manager\ReachSerializationUtils.cs (13)
46
int delta = (index + 1) -
Count
;
59
return (index <
Count
);
70
for (int i = 0; i <
Count
; i++)
166
if ((
Count
+ delta) > List.Length)
168
System.Windows.DependencyProperty[] newList = new System.Windows.DependencyProperty[Math.Max(List.Length * 2,
Count
+ delta)];
181
int index =
Count
;
201
Array.Sort(List, 0,
Count
);
211
for (int i = 0; i <
Count
; i++)
222
System.Windows.DependencyProperty[] array = new System.Windows.DependencyProperty[
Count
];
223
Array.Copy(List, 0, array, 0,
Count
);
244
Array.Clear(List, 0,
Count
);
259
Array.Copy(List, index + 1, List, index, (
Count
- index - 1));
262
Array.Clear(List,
Count
- 1, 1);