1 write to handleTypeCount
System.Windows.Forms (1)
misc\HandleCollector.cs (1)
91
handleTypes[
handleTypeCount
++] = new HandleType(typeName, expense, initialThreshold);
6 references to handleTypeCount
System.Windows.Forms (6)
misc\HandleCollector.cs (6)
59
for(int i=0; i <
handleTypeCount
; i++)
83
if (
handleTypeCount
== 0 ||
handleTypeCount
== handleTypes.Length) {
84
HandleType[] newTypes = new HandleType[
handleTypeCount
+ 10];
86
Array.Copy(handleTypes, 0, newTypes, 0,
handleTypeCount
);
92
return
handleTypeCount
;