6 writes to Count
ReachFramework (6)
Serialization\Manager\ReachSerializationUtils.cs (6)
38
Count
= 0;
119
Count
++;
134
Count
++;
198
Count
+= delta;
256
Count
= 0;
274
Count
--;
16 references to Count
ReachFramework (16)
Serialization\Manager\MetroSerializationManager.cs (3)
797
if(list.
Count
> 0)
801
TypeDependencyPropertyCache[] dependencyPropertiesCache = new TypeDependencyPropertyCache[list.
Count
];
804
indexInDependencyPropertyList<list.
Count
;
Serialization\Manager\ReachSerializationUtils.cs (13)
56
int delta = (index + 1) -
Count
;
69
return (index <
Count
);
80
for (int i = 0; i <
Count
; i++)
176
if ((
Count
+ delta) > List.Length)
178
System.Windows.DependencyProperty[] newList = new System.Windows.DependencyProperty[Math.Max(List.Length * 2,
Count
+ delta)];
191
int index =
Count
;
211
Array.Sort(List, 0,
Count
);
221
for (int i = 0; i <
Count
; i++)
232
System.Windows.DependencyProperty[] array = new System.Windows.DependencyProperty[
Count
];
233
Array.Copy(List, 0, array, 0,
Count
);
254
Array.Clear(List, 0,
Count
);
269
Array.Copy(List, index + 1, List, index, (
Count
- index - 1));
272
Array.Clear(List,
Count
- 1, 1);