3 writes to stack
System.Xml (3)
System\Xml\HWStack.cs (3)
26this.stack = new Object[GrowthRate]; 40this.stack = newstack; 94this.stack = stack;
8 references to stack
System.Xml (8)
System\Xml\HWStack.cs (8)
38System.Array.Copy(this.stack, 0, newstack, 0, this.used); 43return this.stack[this.used++]; 49Object result = this.stack[this.used]; 56return this.used > 0 ? this.stack[this.used - 1] : null; 61this.stack[this.used - 1] = o; 68Object result = this.stack[index]; 77 this.stack[index] = value; 101return new HWStack((object[]) this.stack.Clone(), this.growthRate, this.used, this.size);