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