6 writes to Count
ReachFramework (6)
Serialization\Manager\ReachSerializationUtils.cs (6)
27
Count
= 0;
108
Count
++;
123
Count
++;
187
Count
+= delta;
245
Count
= 0;
263
Count
--;
16 references to Count
ReachFramework (16)
Serialization\Manager\MetroSerializationManager.cs (3)
789
if(list.
Count
> 0)
793
TypeDependencyPropertyCache[] dependencyPropertiesCache = new TypeDependencyPropertyCache[list.
Count
];
796
indexInDependencyPropertyList<list.
Count
;
Serialization\Manager\ReachSerializationUtils.cs (13)
45
int delta = (index + 1) -
Count
;
58
return (index <
Count
);
69
for (int i = 0; i <
Count
; i++)
165
if ((
Count
+ delta) > List.Length)
167
System.Windows.DependencyProperty[] newList = new System.Windows.DependencyProperty[Math.Max(List.Length * 2,
Count
+ delta)];
180
int index =
Count
;
200
Array.Sort(List, 0,
Count
);
210
for (int i = 0; i <
Count
; i++)
221
System.Windows.DependencyProperty[] array = new System.Windows.DependencyProperty[
Count
];
222
Array.Copy(List, 0, array, 0,
Count
);
243
Array.Clear(List, 0,
Count
);
258
Array.Copy(List, index + 1, List, index, (
Count
- index - 1));
261
Array.Clear(List,
Count
- 1, 1);