3 writes to size
System.Xml (3)
System\Xml\HWStack.cs (3)
27
this.
size
= GrowthRate;
41
this.
size
+= this.growthRate;
97
this.
size
= size;
3 references to size
System.Xml (3)
System\Xml\HWStack.cs (3)
32
if (this.used == this.
size
) {
36
Object[] newstack = new Object[this.
size
+ this.growthRate];
101
return new HWStack((object[]) this.stack.Clone(), this.growthRate, this.used, this.
size
);